/** * 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 { ReqDockerhubDestination, ReqLocalDestination, EnumDestinationType } from './'; /** * @type ReqDestination * * @export */ export declare type ReqDestination = { type: EnumDestinationType.Dockerhub; } & ReqDockerhubDestination | { type: EnumDestinationType.Local; } & ReqLocalDestination; export declare function ReqDestinationFromJSON(json: any): ReqDestination; export declare function ReqDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqDestination; export declare function ReqDestinationToJSON(value?: ReqDestination | null): any;