xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
30 lines (29 loc) • 664 B
TypeScript
export declare class LineItemTracking {
/**
* The Xero identifier for a tracking category
*/
'trackingCategoryID'?: string;
/**
* The Xero identifier for a tracking category option
*/
'trackingOptionID'?: string;
/**
* The name of the tracking category
*/
'name'?: string;
/**
* See Tracking Options
*/
'option'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}