/** * 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 { ReqDockerhubIdentity, ReqGithubIdentity, EnumIdentityType } from './'; /** * @type ReqIdentity * * @export */ export declare type ReqIdentity = { type: EnumIdentityType.Dockerhub; } & ReqDockerhubIdentity | { type: EnumIdentityType.Github; } & ReqGithubIdentity; export declare function ReqIdentityFromJSON(json: any): ReqIdentity; export declare function ReqIdentityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqIdentity; export declare function ReqIdentityToJSON(value?: ReqIdentity | null): any;