/** * 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 { Value, ValueFrom } from './'; /** * * @export * @interface SpecWithValue */ export interface SpecWithValue { /** * * @type {string} * @memberof SpecWithValue */ description?: string; /** * * @type {boolean} * @memberof SpecWithValue */ required?: boolean; /** * * @type {string} * @memberof SpecWithValue */ type?: string; /** * * @type {Value} * @memberof SpecWithValue */ value?: Value; /** * * @type {ValueFrom} * @memberof SpecWithValue */ value_from?: ValueFrom; } export declare function SpecWithValueFromJSON(json: any): SpecWithValue; export declare function SpecWithValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpecWithValue; export declare function SpecWithValueToJSON(value?: SpecWithValue | null): any;