/* tslint:disable */ /* eslint-disable */ /** * gljournalentries * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the conversion rate used in accounting to convert amounts from one currency to organisation currency */ export interface AccountingRate { /** * The encoded key of the accounting rate, auto generated, unique */ encodedKey?: string; /** * Rate validity end date */ endDate?: string; /** * Organisation currency code */ fromCurrencyCode?: string; /** * Value of rate to be used for accounting conversions */ rate?: number; /** * Rate validity start date */ startDate?: string; /** * Foreign currency code */ toCurrencyCode?: string; }