xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
22 lines (21 loc) • 514 B
TypeScript
export declare class TrialBalanceEntry {
/**
* Net movement or net balance in the account
*/
'value'?: number;
/**
* Sign (Debit/Credit) of the movement of balance in the account
*/
'entryType'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}