@apideck/node
Version:
Apideck Node.js SDK
109 lines (108 loc) • 3.1 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { PassThroughBody } from './PassThroughBody';
/**
*
* @export
* @interface TrackingCategory
*/
export interface TrackingCategory {
/**
* A unique identifier for an object.
* @type {string}
* @memberof TrackingCategory
*/
readonly id?: string;
/**
* A unique identifier for an object.
* @type {string}
* @memberof TrackingCategory
*/
parent_id?: string | null;
/**
* The name of the tracking category.
* @type {string}
* @memberof TrackingCategory
*/
name?: string;
/**
* The code of the tracking category.
* @type {string}
* @memberof TrackingCategory
*/
code?: string | null;
/**
* Based on the status some functionality is enabled or disabled.
* @type {string}
* @memberof TrackingCategory
*/
status?: TrackingCategoryStatus;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof TrackingCategory
*/
readonly custom_mappings?: object | null;
/**
* A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object.
* @type {string}
* @memberof TrackingCategory
*/
row_version?: string | null;
/**
* The user who last updated the object.
* @type {string}
* @memberof TrackingCategory
*/
readonly updated_by?: string | null;
/**
* The user who created the object.
* @type {string}
* @memberof TrackingCategory
*/
readonly created_by?: string | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof TrackingCategory
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof TrackingCategory
*/
readonly created_at?: Date | null;
/**
*
* @type {PassThroughBody}
* @memberof TrackingCategory
*/
pass_through?: PassThroughBody;
/**
* The subsidiaries the account belongs to.
* @type {Array<object>}
* @memberof TrackingCategory
*/
subsidiaries?: Array<object>;
}
/**
* @export
* @enum {string}
*/
export declare enum TrackingCategoryStatus {
active = "active",
inactive = "inactive"
}
export declare function TrackingCategoryFromJSON(json: any): TrackingCategory;
export declare function TrackingCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackingCategory;
export declare function TrackingCategoryToJSON(value?: TrackingCategory | null): any;