/** * 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 { ReqDockerhubContext, ReqGithubContext, ReqGitlabContext, ReqLocalContext, EnumContextType } from './'; /** * @type ReqContext * * @export */ export declare type ReqContext = { type: EnumContextType.Dockerhub; } & ReqDockerhubContext | { type: EnumContextType.Github; } & ReqGithubContext | { type: EnumContextType.Gitlab; } & ReqGitlabContext | { type: EnumContextType.Local; } & ReqLocalContext; export declare function ReqContextFromJSON(json: any): ReqContext; export declare function ReqContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqContext; export declare function ReqContextToJSON(value?: ReqContext | null): any;