/** * 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 TapeUpdate */ export interface TapeUpdate { /** * * @type {string} * @memberof TapeUpdate */ name: string; /** * * @type {string} * @memberof TapeUpdate */ uuid?: string; /** * * @type {number} * @memberof TapeUpdate */ generation?: number; /** * * @type {string} * @memberof TapeUpdate */ customA?: string; /** * * @type {string} * @memberof TapeUpdate */ customB?: string; /** * * @type {string} * @memberof TapeUpdate */ customC?: string; /** * * @type {string} * @memberof TapeUpdate */ customD?: string; /** * * @type {number} * @memberof TapeUpdate */ freeSpace?: number | null; /** * * @type {number} * @memberof TapeUpdate */ loadCounter?: number; /** * * @type {number} * @memberof TapeUpdate */ errorCounter?: number; /** * * @type {string} * @memberof TapeUpdate */ errorReason?: string | null; /** * * @type {boolean} * @memberof TapeUpdate */ active?: boolean; /** * * @type {string} * @memberof TapeUpdate */ lto?: TapeUpdateLtoEnum; /** * * @type {number} * @memberof TapeUpdate */ group?: number | null; } /** * @export * @enum {string} */ export declare enum TapeUpdateLtoEnum { _5 = "5", _6 = "6", _7 = "7" } export declare function TapeUpdateFromJSON(json: any): TapeUpdate; export declare function TapeUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapeUpdate; export declare function TapeUpdateToJSON(value?: TapeUpdate | null): any;