/** * 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 SpecWithValueAllOf */ export interface SpecWithValueAllOf { /** * * @type {Value} * @memberof SpecWithValueAllOf */ value?: Value; /** * * @type {ValueFrom} * @memberof SpecWithValueAllOf */ value_from?: ValueFrom; } export declare function SpecWithValueAllOfFromJSON(json: any): SpecWithValueAllOf; export declare function SpecWithValueAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpecWithValueAllOf; export declare function SpecWithValueAllOfToJSON(value?: SpecWithValueAllOf | null): any;