/** * Tapis Workflows API * Create and manage pipelines * * The version of the OpenAPI document: 1.6.0 * Contact: cicsupport@tacc.utexas.edu * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EnumArchiveType } from './'; /** * * @export * @interface ReqTapisSystemArchive */ export interface ReqTapisSystemArchive { /** * * @type {string} * @memberof ReqTapisSystemArchive */ id: string; /** * * @type {EnumArchiveType} * @memberof ReqTapisSystemArchive */ type: EnumArchiveType; /** * * @type {string} * @memberof ReqTapisSystemArchive */ archive_dir?: string; /** * * @type {string} * @memberof ReqTapisSystemArchive */ system_id: string; } export declare function ReqTapisSystemArchiveFromJSON(json: any): ReqTapisSystemArchive; export declare function ReqTapisSystemArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqTapisSystemArchive; export declare function ReqTapisSystemArchiveToJSON(value?: ReqTapisSystemArchive | null): any;