/** * 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 { ReqGitlabCred } from './'; /** * * @export * @interface ReqGitlabContextAllOf */ export interface ReqGitlabContextAllOf { /** * * @type {ReqGitlabCred} * @memberof ReqGitlabContextAllOf */ credentials?: ReqGitlabCred; /** * * @type {string} * @memberof ReqGitlabContextAllOf */ identity_uuid?: string; } export declare function ReqGitlabContextAllOfFromJSON(json: any): ReqGitlabContextAllOf; export declare function ReqGitlabContextAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqGitlabContextAllOf; export declare function ReqGitlabContextAllOfToJSON(value?: ReqGitlabContextAllOf | null): any;