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