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