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

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


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


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