UNPKG

@apideck/node

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