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