/** * 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 ReqNonLocalContext */ export interface ReqNonLocalContext { /** * * @type {EnumContextType} * @memberof ReqNonLocalContext */ type: EnumContextType; /** * * @type {EnumContextVisibility} * @memberof ReqNonLocalContext */ visibility: EnumContextVisibility; /** * * @type {string} * @memberof ReqNonLocalContext */ url: string; } export declare function ReqNonLocalContextFromJSON(json: any): ReqNonLocalContext; export declare function ReqNonLocalContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqNonLocalContext; export declare function ReqNonLocalContextToJSON(value?: ReqNonLocalContext | null): any;