/** * 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 { ArgSpec } from './'; /** * * @export * @interface ReqRunPipeline */ export interface ReqRunPipeline { /** * * @type {string} * @memberof ReqRunPipeline */ name?: string; /** * * @type {string} * @memberof ReqRunPipeline */ description?: string; /** * * @type {{ [key: string]: ArgSpec; }} * @memberof ReqRunPipeline */ args?: { [key: string]: ArgSpec; }; /** * * @type {Array} * @memberof ReqRunPipeline */ directives?: Array; } export declare function ReqRunPipelineFromJSON(json: any): ReqRunPipeline; export declare function ReqRunPipelineFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqRunPipeline; export declare function ReqRunPipelineToJSON(value?: ReqRunPipeline | null): any;