import { TrialBalanceEntry } from '././trialBalanceEntry'; import { TrialBalanceMovement } from '././trialBalanceMovement'; export declare class TrialBalanceAccount { /** * ID of the account */ 'accountId'?: string; /** * The type of the account. See Account Types */ 'accountType'?: string; /** * Customer defined alpha numeric account code e.g 200 or SALES */ 'accountCode'?: string; /** * The class of the account. See Account Class Types */ 'accountClass'?: string; /** * Accounts with a status of ACTIVE can be updated to ARCHIVED. See Account Status Codes */ 'status'?: string; /** * Reporting code (Shown if set) */ 'reportingCode'?: string; /** * Name of the account */ 'accountName'?: string; 'balance'?: TrialBalanceEntry; /** * Value of balance. Expense and Asset accounts code debits as positive. Revenue, Liability, and Equity accounts code debits as negative */ 'signedBalance'?: number; 'accountMovement'?: TrialBalanceMovement; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }