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