xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
30 lines (29 loc) • 586 B
TypeScript
export declare class LineItemResponse {
/**
* Xero Identifier of account
*/
'accountId'?: string;
/**
* Shown if set
*/
'reportingCode'?: string;
/**
* Amount of line item
*/
'lineAmount'?: number;
/**
* Account type
*/
'accountType'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}