xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
27 lines (26 loc) • 717 B
TypeScript
import { BalanceDetails } from '././balanceDetails';
/**
* Balance supplied for each account that has a value as at the conversion date.
*/
export declare class ConversionBalances {
/**
* The account code for a account
*/
'accountCode'?: string;
/**
* The opening balances of the account. Debits are positive, credits are negative values
*/
'balance'?: number;
'balanceDetails'?: Array<BalanceDetails>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}