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

from __future__ import annotations
from .jsonpayloadresponse import JSONPayloadResponse, JSONPayloadResponseTypedDict
from mistralai.client.types import BaseModel
from typing_extensions import TypedDict


class WorkflowExecutionStartedAttributesResponseTypedDict(TypedDict):
    r"""Attributes for workflow execution started events."""

    task_id: str
    r"""Unique identifier for the task within the workflow execution."""
    workflow_name: str
    r"""The registered name of the workflow being executed."""
    input: JSONPayloadResponseTypedDict
    r"""A payload containing arbitrary JSON data.

    Used for complete state snapshots or final results.
    """


class WorkflowExecutionStartedAttributesResponse(BaseModel):
    r"""Attributes for workflow execution started events."""

    task_id: str
    r"""Unique identifier for the task within the workflow execution."""

    workflow_name: str
    r"""The registered name of the workflow being executed."""

    input: JSONPayloadResponse
    r"""A payload containing arbitrary JSON data.

    Used for complete state snapshots or final results.
    """
