xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
23 lines (22 loc) • 576 B
TypeScript
import { CreditDebitIndicator } from '././creditDebitIndicator';
/**
* The starting balance of the statement
*/
export declare class StartBalance {
/**
* decimal(19,4) unsigned Opening/closing balance amount.
*/
'amount'?: number;
'creditDebitIndicator'?: CreditDebitIndicator;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}