UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

34 lines (33 loc) 645 B
export declare class BalanceSheetAccountDetail { /** * Accounting code */ 'code'?: string; /** * ID of the account */ 'accountID'?: string; /** * Account name */ 'name'?: string; /** * Reporting code */ 'reportingCode'?: string; /** * Total movement on this account */ 'total'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }