/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TapeLibrarySlot */ export interface TapeLibrarySlot { /** * * @type {number} * @memberof TapeLibrarySlot */ drive?: number | null; /** * * @type {string} * @memberof TapeLibrarySlot */ status?: string; /** * * @type {string} * @memberof TapeLibrarySlot */ barcode?: string; /** * * @type {string} * @memberof TapeLibrarySlot */ origin?: string; /** * * @type {boolean} * @memberof TapeLibrarySlot */ locked?: boolean; } export declare function TapeLibrarySlotFromJSON(json: any): TapeLibrarySlot; export declare function TapeLibrarySlotFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapeLibrarySlot; export declare function TapeLibrarySlotToJSON(value?: TapeLibrarySlot | null): any;