xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
29 lines (28 loc) • 802 B
TypeScript
/**
* An array to specify multiple currency balances of an account
*/
export declare class BalanceDetails {
/**
* The opening balances of the account. Debits are positive, credits are negative values
*/
'balance'?: number;
/**
* The currency of the balance (Not required for base currency)
*/
'currencyCode'?: string;
/**
* (Optional) Exchange rate to base currency when money is spent or received. If not specified, XE rate for the day is applied
*/
'currencyRate'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}