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

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


class WorkflowBulkArchiveRequestTypedDict(TypedDict):
    workflow_ids: List[str]
    r"""List of workflow IDs to archive"""


class WorkflowBulkArchiveRequest(BaseModel):
    workflow_ids: List[str]
    r"""List of workflow IDs to archive"""
