xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
26 lines (25 loc) • 625 B
TypeScript
export declare class CashBalance {
/**
* Opening balance of cash and cash equivalents
*/
'openingCashBalance'?: number;
/**
* Closing balance of cash and cash equivalents
*/
'closingCashBalance'?: number;
/**
* Net movement of cash and cash equivalents for the period
*/
'netCashMovement'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}