/** * 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 { EnumContextType, EnumContextVisibility, ReqGitlabCred } from './'; /** * * @export * @interface ReqGitlabContext */ export interface ReqGitlabContext { /** * * @type {EnumContextType} * @memberof ReqGitlabContext */ type: EnumContextType; /** * * @type {EnumContextVisibility} * @memberof ReqGitlabContext */ visibility: EnumContextVisibility; /** * * @type {string} * @memberof ReqGitlabContext */ url: string; /** * * @type {string} * @memberof ReqGitlabContext */ branch: string; /** * * @type {string} * @memberof ReqGitlabContext */ build_file_path: string; /** * * @type {string} * @memberof ReqGitlabContext */ sub_path?: string; /** * * @type {ReqGitlabCred} * @memberof ReqGitlabContext */ credentials?: ReqGitlabCred; /** * * @type {string} * @memberof ReqGitlabContext */ identity_uuid?: string; } export declare function ReqGitlabContextFromJSON(json: any): ReqGitlabContext; export declare function ReqGitlabContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGitlabContext; export declare function ReqGitlabContextToJSON(value?: ReqGitlabContext | null): any;