"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
# @generated-id: 745d146d9413

from __future__ import annotations
from datetime import datetime
from mistralai.client.types import BaseModel
from typing_extensions import TypedDict


class ScheduleRecentExecutionTypedDict(TypedDict):
    scheduled_at: datetime
    r"""Time the execution was scheduled to run."""
    started_at: datetime
    r"""Actual time the execution started."""
    execution_id: str
    r"""ID of the workflow execution that was started."""


class ScheduleRecentExecution(BaseModel):
    scheduled_at: datetime
    r"""Time the execution was scheduled to run."""

    started_at: datetime
    r"""Actual time the execution started."""

    execution_id: str
    r"""ID of the workflow execution that was started."""
