@apideck/node
Version:
Apideck Node.js SDK
97 lines (96 loc) • 2.65 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 Subsidiary
*/
export interface Subsidiary {
/**
* A unique identifier for an object.
* @type {string}
* @memberof Subsidiary
*/
readonly id?: string;
/**
* A unique identifier for an object.
* @type {string}
* @memberof Subsidiary
*/
parent_id?: string | null;
/**
* The name of the company.
* @type {string}
* @memberof Subsidiary
*/
name?: string | null;
/**
* Based on the status some functionality is enabled or disabled.
* @type {string}
* @memberof Subsidiary
*/
status?: SubsidiaryStatus;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof Subsidiary
*/
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 Subsidiary
*/
row_version?: string | null;
/**
* The user who last updated the object.
* @type {string}
* @memberof Subsidiary
*/
readonly updated_by?: string | null;
/**
* The user who created the object.
* @type {string}
* @memberof Subsidiary
*/
readonly created_by?: string | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof Subsidiary
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof Subsidiary
*/
readonly created_at?: Date | null;
/**
*
* @type {PassThroughBody}
* @memberof Subsidiary
*/
pass_through?: PassThroughBody;
}
/**
* @export
* @enum {string}
*/
export declare enum SubsidiaryStatus {
active = "active",
inactive = "inactive"
}
export declare function SubsidiaryFromJSON(json: any): Subsidiary;
export declare function SubsidiaryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Subsidiary;
export declare function SubsidiaryToJSON(value?: Subsidiary | null): any;