/** * 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, ValueFromSecretOrHost } from './'; /** * * @export * @interface ArgSpec */ export interface ArgSpec { /** * * @type {string} * @memberof ArgSpec */ description?: string; /** * * @type {boolean} * @memberof ArgSpec */ required?: boolean; /** * * @type {string} * @memberof ArgSpec */ type?: string; /** * * @type {Value} * @memberof ArgSpec */ value?: Value; /** * * @type {ValueFromSecretOrHost} * @memberof ArgSpec */ value_from?: ValueFromSecretOrHost; } export declare function ArgSpecFromJSON(json: any): ArgSpec; export declare function ArgSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArgSpec; export declare function ArgSpecToJSON(value?: ArgSpec | null): any;