/** * 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 { EnumContextVisibility } from './'; /** * * @export * @interface ReqNonLocalContextAllOf */ export interface ReqNonLocalContextAllOf { /** * * @type {EnumContextVisibility} * @memberof ReqNonLocalContextAllOf */ visibility: EnumContextVisibility; /** * * @type {string} * @memberof ReqNonLocalContextAllOf */ url: string; } export declare function ReqNonLocalContextAllOfFromJSON(json: any): ReqNonLocalContextAllOf; export declare function ReqNonLocalContextAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqNonLocalContextAllOf; export declare function ReqNonLocalContextAllOfToJSON(value?: ReqNonLocalContextAllOf | null): any;