Files
medusa-store/www/utils/generated/oas-output/schemas/AdminWorkflowExecution.ts
2024-08-30 08:35:10 +02:00

61 lines
1.5 KiB
TypeScript

/**
* @schema AdminWorkflowExecution
* type: object
* description: The workflows execution's workflow execution.
* x-schemaName: AdminWorkflowExecution
* required:
* - id
* - workflow_id
* - transaction_id
* - execution
* - context
* - state
* - created_at
* - updated_at
* properties:
* id:
* type: string
* title: id
* description: The workflow execution's ID.
* workflow_id:
* type: string
* title: workflow_id
* description: The workflow execution's workflow id.
* transaction_id:
* type: string
* title: transaction_id
* description: The workflow execution's transaction id.
* execution:
* $ref: "#/components/schemas/AdminWorkflowExecutionExecution"
* context:
* $ref: "#/components/schemas/WorkflowExecutionContext"
* state:
* type: string
* description: The workflow execution's state.
* enum:
* - not_started
* - invoking
* - waiting_to_compensate
* - compensating
* - done
* - reverted
* - failed
* created_at:
* type: string
* format: date-time
* title: created_at
* description: The workflow execution's created at.
* updated_at:
* type: string
* format: date-time
* title: updated_at
* description: The workflow execution's updated at.
* deleted_at:
* type: string
* format: date-time
* title: deleted_at
* description: The workflow execution's deleted at.
*
*/