UNPKG

@apideck/node

Version:
46 lines (45 loc) 1.43 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A record of a balance sheet account. * @export * @interface BalanceSheetAccountRecord */ export interface BalanceSheetAccountRecord { /** * The unique identifier for the account. * @type {string} * @memberof BalanceSheetAccountRecord */ readonly account_id?: string; /** * The account code of the account * @type {string} * @memberof BalanceSheetAccountRecord */ readonly code?: string; /** * The name of the account. * @type {string} * @memberof BalanceSheetAccountRecord */ readonly name?: string; /** * The amount or value of the item * @type {number} * @memberof BalanceSheetAccountRecord */ readonly value?: number; } export declare function BalanceSheetAccountRecordFromJSON(json: any): BalanceSheetAccountRecord; export declare function BalanceSheetAccountRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceSheetAccountRecord; export declare function BalanceSheetAccountRecordToJSON(value?: BalanceSheetAccountRecord | null): any;