/** * 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 { TapeGroup } from './'; /** * * @export * @interface TapeJob */ export interface TapeJob { /** * * @type {TapeGroup} * @memberof TapeJob */ group?: TapeGroup; /** * * @type {number} * @memberof TapeJob */ id?: number; /** * * @type {Array} * @memberof TapeJob */ exclude?: Array; /** * * @type {string} * @memberof TapeJob */ selectedTape?: string; /** * * @type {string} * @memberof TapeJob */ hasCopy2?: string; /** * * @type {string} * @memberof TapeJob */ copy2Id?: string; /** * * @type {string} * @memberof TapeJob */ status?: string; /** * * @type {string} * @memberof TapeJob */ copied?: string; /** * * @type {string} * @memberof TapeJob */ total?: string; /** * * @type {string} * @memberof TapeJob */ type?: string; /** * * @type {boolean} * @memberof TapeJob */ _export?: boolean; /** * * @type {string} * @memberof TapeJob */ start?: string; /** * * @type {string} * @memberof TapeJob */ duration?: string; /** * * @type {string} * @memberof TapeJob */ name?: string; /** * * @type {string} * @memberof TapeJob */ destination?: string; /** * * @type {boolean} * @memberof TapeJob */ deleteSource?: boolean; /** * * @type {string} * @memberof TapeJob */ destination2?: string; /** * * @type {string} * @memberof TapeJob */ group2?: string | null; /** * * @type {boolean} * @memberof TapeJob */ export2?: boolean; /** * * @type {boolean} * @memberof TapeJob */ md5?: boolean; /** * * @type {string} * @memberof TapeJob */ startDate?: string; /** * * @type {string} * @memberof TapeJob */ logPath?: string | null; /** * * @type {boolean} * @memberof TapeJob */ logExists?: boolean; } export declare function TapeJobFromJSON(json: any): TapeJob; export declare function TapeJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapeJob; export declare function TapeJobToJSON(value?: TapeJob | null): any;