/** * 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. */ /** * * @export * @interface ReqRepoContextAllOf */ export interface ReqRepoContextAllOf { /** * * @type {string} * @memberof ReqRepoContextAllOf */ branch: string; /** * * @type {string} * @memberof ReqRepoContextAllOf */ build_file_path: string; /** * * @type {string} * @memberof ReqRepoContextAllOf */ sub_path?: string; } export declare function ReqRepoContextAllOfFromJSON(json: any): ReqRepoContextAllOf; export declare function ReqRepoContextAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqRepoContextAllOf; export declare function ReqRepoContextAllOfToJSON(value?: ReqRepoContextAllOf | null): any;