/** * 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 ReqBaseArchive */ export interface ReqBaseArchive { /** * * @type {string} * @memberof ReqBaseArchive */ id: string; /** * * @type {EnumArchiveType} * @memberof ReqBaseArchive */ type: EnumArchiveType; /** * * @type {string} * @memberof ReqBaseArchive */ archive_dir?: string; } export declare function ReqBaseArchiveFromJSON(json: any): ReqBaseArchive; export declare function ReqBaseArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqBaseArchive; export declare function ReqBaseArchiveToJSON(value?: ReqBaseArchive | null): any;