"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""

from __future__ import annotations
from mistralai.types import BaseModel
from mistralai.utils import FieldMetadata, PathParamMetadata
from typing_extensions import Annotated, TypedDict


class DeleteModelV1ModelsModelIDDeleteRequestTypedDict(TypedDict):
    model_id: str
    r"""The ID of the model to delete."""


class DeleteModelV1ModelsModelIDDeleteRequest(BaseModel):
    model_id: Annotated[
        str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
    ]
    r"""The ID of the model to delete."""
