/* tslint:disable */ /* eslint-disable */ /** * accounting/reports * 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 information about the accounting report amounts. */ export interface AccountingReportAmounts { /** * The closing balance amount of the general ledger account. */ closingBalance?: number; /** * The credit amount of the general ledger account. */ credits?: number; /** * The debit amount of the general ledger account. */ debits?: number; /** * The net change amount of the general ledger account. */ netChange?: number; /** * The opening balance amount of the general ledger account. */ openingBalance?: number; }