/** * 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 { ReqS3Archive, ReqTapisSystemArchive, EnumArchiveType } from './'; /** * @type ReqArchive * * @export */ export declare type ReqArchive = { type: EnumArchiveType.S3; } & ReqS3Archive | { type: EnumArchiveType.System; } & ReqTapisSystemArchive; export declare function ReqArchiveFromJSON(json: any): ReqArchive; export declare function ReqArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqArchive; export declare function ReqArchiveToJSON(value?: ReqArchive | null): any;