Result of an async workflow execution.
| 47 | |
| 48 | @dataclass |
| 49 | class AsyncExecutionResult: |
| 50 | """Result of an async workflow execution.""" |
| 51 | success: bool |
| 52 | job_id: str |
| 53 | status_url: str |
| 54 | execution_id: Optional[str] = None |
| 55 | message: str = "" |
| 56 | async_execution: bool = True |
| 57 | |
| 58 | |
| 59 | @dataclass |