/** * 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 { ValueFromSecretOrHost } from './'; /** * * @export * @interface ArgSpecAllOf */ export interface ArgSpecAllOf { /** * * @type {ValueFromSecretOrHost} * @memberof ArgSpecAllOf */ value_from?: ValueFromSecretOrHost; } export declare function ArgSpecAllOfFromJSON(json: any): ArgSpecAllOf; export declare function ArgSpecAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArgSpecAllOf; export declare function ArgSpecAllOfToJSON(value?: ArgSpecAllOf | null): any;