/** * 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. */ /** * * @export * @interface ReqCreateTaskExecution */ export interface ReqCreateTaskExecution { /** * * @type {string} * @memberof ReqCreateTaskExecution */ task_id: string; /** * * @type {string} * @memberof ReqCreateTaskExecution */ started_at?: string; /** * * @type {string} * @memberof ReqCreateTaskExecution */ last_modified?: string; /** * * @type {string} * @memberof ReqCreateTaskExecution */ uuid: string; } export declare function ReqCreateTaskExecutionFromJSON(json: any): ReqCreateTaskExecution; export declare function ReqCreateTaskExecutionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReqCreateTaskExecution; export declare function ReqCreateTaskExecutionToJSON(value?: ReqCreateTaskExecution | null): any;