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

from __future__ import annotations
from mistralai.client.types import BaseModel
from typing import Any
from typing_extensions import TypedDict


class UpdateWorkflowResponseTypedDict(TypedDict):
    update_name: str
    result: Any
    r"""The result of the Update workflow call"""


class UpdateWorkflowResponse(BaseModel):
    update_name: str

    result: Any
    r"""The result of the Update workflow call"""
