UNPKG

@apideck/node

Version:
89 lines (88 loc) 2.29 kB
/** * 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 Department */ export interface Department { /** * A unique identifier for an object. * @type {string} * @memberof Department */ readonly id?: string; /** * Parent ID * @type {string} * @memberof Department */ readonly parent_id?: string | null; /** * Department name * @type {string} * @memberof Department */ name?: string | null; /** * * @type {string} * @memberof Department */ code?: string | null; /** * * @type {string} * @memberof Department */ description?: string | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof Department */ readonly custom_mappings?: object | null; /** * The user who last updated the object. * @type {string} * @memberof Department */ readonly updated_by?: string | null; /** * The user who created the object. * @type {string} * @memberof Department */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof Department */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof Department */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof Department */ pass_through?: PassThroughBody; } export declare function DepartmentFromJSON(json: any): Department; export declare function DepartmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Department; export declare function DepartmentToJSON(value?: Department | null): any;