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

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


class DeleteDatasetRecordsRequestTypedDict(TypedDict):
    dataset_record_ids: List[str]


class DeleteDatasetRecordsRequest(BaseModel):
    dataset_record_ids: List[str]
