/** * 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 { EnumRunStatus } from './'; /** * * @export * @interface PipelineRun */ export interface PipelineRun { /** * * @type {string} * @memberof PipelineRun */ name?: string; /** * * @type {string} * @memberof PipelineRun */ description?: string; /** * * @type {string} * @memberof PipelineRun */ uuid?: string; /** * * @type {string} * @memberof PipelineRun */ pipeline?: string; /** * * @type {EnumRunStatus} * @memberof PipelineRun */ status?: EnumRunStatus; /** * * @type {string} * @memberof PipelineRun */ started_at?: string; /** * * @type {string} * @memberof PipelineRun */ last_modified?: string; /** * * @type {string} * @memberof PipelineRun */ logs?: string; } export declare function PipelineRunFromJSON(json: any): PipelineRun; export declare function PipelineRunFromJSONTyped(json: any, ignoreDiscriminator: boolean): PipelineRun; export declare function PipelineRunToJSON(value?: PipelineRun | null): any;