/** * 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 { S3Archive, TapisSystemArchive, EnumArchiveType } from './'; /** * @type Archive * * @export */ export declare type Archive = { type: EnumArchiveType.S3; } & S3Archive | { type: EnumArchiveType.System; } & TapisSystemArchive; export declare function ArchiveFromJSON(json: any): Archive; export declare function ArchiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): Archive; export declare function ArchiveToJSON(value?: Archive | null): any;