UNPKG

@apideck/node

Version:
53 lines (52 loc) 1.63 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. */ import { BalanceSheetAccounts } from './BalanceSheetAccounts'; /** * A balance sheet account represents the financial position of a company at a specific point in time. * @export * @interface BalanceSheetAccount */ export interface BalanceSheetAccount { /** * The unique identifier for the account. * @type {string} * @memberof BalanceSheetAccount */ readonly account_id?: string; /** * The account code of the account * @type {string} * @memberof BalanceSheetAccount */ readonly code?: string; /** * The name of the account. * @type {string} * @memberof BalanceSheetAccount */ readonly name?: string; /** * The amount or value of the item * @type {number} * @memberof BalanceSheetAccount */ readonly value?: number; /** * * @type {BalanceSheetAccounts} * @memberof BalanceSheetAccount */ items?: BalanceSheetAccounts | null; } export declare function BalanceSheetAccountFromJSON(json: any): BalanceSheetAccount; export declare function BalanceSheetAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceSheetAccount; export declare function BalanceSheetAccountToJSON(value?: BalanceSheetAccount | null): any;