xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
26 lines (25 loc) • 683 B
TypeScript
export declare class ContactTotalDetail {
/**
* Total paid invoice and cash value for the contact within the period.
*/
'totalPaid'?: number;
/**
* Total outstanding invoice value for the contact within the period.
*/
'totalOutstanding'?: number;
/**
* Total unapplied credited value for the contact within the period.
*/
'totalCreditedUnApplied'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}