/** * 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. */ import { TapeLibrarySlot } from './'; /** * * @export * @interface TapeLibraryEndpointResponse */ export interface TapeLibraryEndpointResponse { /** * * @type {Array} * @memberof TapeLibraryEndpointResponse */ drives: Array; /** * * @type {Array} * @memberof TapeLibraryEndpointResponse */ mailbox: Array; /** * * @type {Array} * @memberof TapeLibraryEndpointResponse */ slots: Array; } export declare function TapeLibraryEndpointResponseFromJSON(json: any): TapeLibraryEndpointResponse; export declare function TapeLibraryEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapeLibraryEndpointResponse; export declare function TapeLibraryEndpointResponseToJSON(value?: TapeLibraryEndpointResponse | null): any;