/** * 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 } from './'; /** * * @export * @interface ReqLocalContext */ export interface ReqLocalContext { /** * * @type {EnumContextType} * @memberof ReqLocalContext */ type: EnumContextType; /** * * @type {string} * @memberof ReqLocalContext */ filename: string; } export declare function ReqLocalContextFromJSON(json: any): ReqLocalContext; export declare function ReqLocalContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqLocalContext; export declare function ReqLocalContextToJSON(value?: ReqLocalContext | null): any;