xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
48 lines (47 loc) • 1.28 kB
TypeScript
/**
* Accounting API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2.0.0
* Contact: api@xero.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export declare class TrackingOption {
/**
* The Xero identifier for a tracking optione.g. ae777a87-5ef3-4fa0-a4f0-d10e1f13073a
*/
'trackingOptionID'?: string;
/**
* The name of the tracking option e.g. Marketing, East (max length = 50)
*/
'name'?: string;
/**
* The status of a tracking option
*/
'status'?: TrackingOption.StatusEnum;
/**
* Filter by a tracking categorye.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9
*/
'trackingCategoryID'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace TrackingOption {
enum StatusEnum {
ACTIVE,
ARCHIVED,
DELETED
}
}