/* 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. */ // May contain unused imports in some cases // @ts-ignore import type { AccountingRate } from './accounting-rate'; // May contain unused imports in some cases // @ts-ignore import type { Currency } from './currency'; /** * Represents the details of the general ledger journal entry amount posted in foreign currency. */ export interface GLJournalEntryForeignAmount { accountingRate?: AccountingRate; /** * The amount of an accounting entry in foreign currency. */ amount?: number; currency?: Currency; }