UNPKG

@apideck/node

Version:
77 lines (76 loc) 1.99 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 Drive */ export interface Drive { /** * A unique identifier for an object. * @type {string} * @memberof Drive */ readonly id: string; /** * The name of the drive * @type {string} * @memberof Drive */ name: string; /** * A description of the object. * @type {string} * @memberof Drive */ description?: string | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof Drive */ readonly custom_mappings?: object | null; /** * The user who last updated the object. * @type {string} * @memberof Drive */ readonly updated_by?: string | null; /** * The user who created the object. * @type {string} * @memberof Drive */ readonly created_by?: string | null; /** * The date and time when the object was last updated. * @type {Date} * @memberof Drive */ readonly updated_at?: Date | null; /** * The date and time when the object was created. * @type {Date} * @memberof Drive */ readonly created_at?: Date | null; /** * * @type {PassThroughBody} * @memberof Drive */ pass_through?: PassThroughBody; } export declare function DriveFromJSON(json: any): Drive; export declare function DriveFromJSONTyped(json: any, ignoreDiscriminator: boolean): Drive; export declare function DriveToJSON(value?: Drive | null): any;