The Execution object
class Execution:
id: str
bot_id: str
bot_executor_job_id: Optional[str]
bot_executor_cron_job_id: Optional[str]
status: Literal["success", "in_progress", "failure", "termination"]
start: str
finish: Optional[str]
logs: List[Dict[str, str]]
return_value: JSON
JSON
is a type alias for Union[Dict[str, "JSON"], List["JSON"], str, int, float, bool, None]
.