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