/* 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 general ledger account and amount used in a journal entry record. */ export interface GLAccountAmount { /** * The amount which was debited or credited. */ amount?: number; /** * Represents the general ledger account code of the the general ledger account that was debited or credited. */ glAccount?: string; }