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