xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
30 lines (29 loc) • 621 B
TypeScript
export declare class BudgetBalance {
/**
* Period the amount applies to (e.g. “2019-08”)
*/
'period'?: string;
/**
* LineItem Quantity
*/
'amount'?: number;
/**
* Budgeted amount
*/
'unitAmount'?: number;
/**
* Any footnotes associated with this balance
*/
'notes'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}