/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ModelMetaObjectDto } from './model-meta-object-dto'; /** * * @export * @interface WorkflowExecutionDto */ export interface WorkflowExecutionDto { /** * Describes the date of the last update * @type {number} * @memberof WorkflowExecutionDto */ lastUpdatedAt?: number; /** * Describe the date when the entity was deleted * @type {number} * @memberof WorkflowExecutionDto */ deletedAt?: number; /** * * @type {string} * @memberof WorkflowExecutionDto */ id?: string; /** * * @type {number} * @memberof WorkflowExecutionDto */ createdAt?: number; /** * * @type {ModelMetaObjectDto} * @memberof WorkflowExecutionDto */ _meta?: ModelMetaObjectDto; /** * * @type {string} * @memberof WorkflowExecutionDto */ workflowId: string; /** * * @type {number} * @memberof WorkflowExecutionDto */ startDate: number; /** * * @type {number} * @memberof WorkflowExecutionDto */ endDate?: number; /** * * @type {string} * @memberof WorkflowExecutionDto */ status: WorkflowExecutionDtoStatusEnum; /** * * @type {string} * @memberof WorkflowExecutionDto */ data?: string; /** * * @type {Array} * @memberof WorkflowExecutionDto */ logs: Array; /** * * @type {any} * @memberof WorkflowExecutionDto */ initialData?: any; /** * * @type {any} * @memberof WorkflowExecutionDto */ hasErrors?: any; } /** * @export * @enum {string} */ export declare enum WorkflowExecutionDtoStatusEnum { Started = "started", Running = "running", FinishedSuccessfully = "finishedSuccessfully", FinishedWithErrors = "finishedWithErrors" }