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

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


class ScheduleFutureExecutionTypedDict(TypedDict):
    scheduled_at: datetime
    r"""Time the execution is scheduled to run."""


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