xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
22 lines (21 loc) • 761 B
TypeScript
export declare class StatementBalanceResponse {
/**
* Total closing balance of the account. This includes both reconciled and unreconciled bank statement lines. The closing balance will always be represented as a positive number, with it’s debit/credit status defined in the statementBalanceDebitCredit field.
*/
'value'?: number;
/**
* The DEBIT or CREDIT status of the account. Cash accounts in credit have a negative balance.
*/
'type'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}