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

from __future__ import annotations
from .toolconfiguration import ToolConfiguration, ToolConfigurationTypedDict
from mistralai.client.types import (
    BaseModel,
    Nullable,
    OptionalNullable,
    UNSET,
    UNSET_SENTINEL,
)
from mistralai.client.utils import validate_const
import pydantic
from pydantic import model_serializer
from pydantic.functional_validators import AfterValidator
from typing import List, Literal
from typing_extensions import Annotated, NotRequired, TypedDict


class DocumentLibraryToolTypedDict(TypedDict):
    library_ids: List[str]
    r"""Ids of the library in which to search."""
    tool_configuration: NotRequired[Nullable[ToolConfigurationTypedDict]]
    type: Literal["document_library"]


class DocumentLibraryTool(BaseModel):
    library_ids: List[str]
    r"""Ids of the library in which to search."""

    tool_configuration: OptionalNullable[ToolConfiguration] = UNSET

    type: Annotated[
        Annotated[
            Literal["document_library"],
            AfterValidator(validate_const("document_library")),
        ],
        pydantic.Field(alias="type"),
    ] = "document_library"

    @model_serializer(mode="wrap")
    def serialize_model(self, handler):
        optional_fields = set(["tool_configuration"])
        nullable_fields = set(["tool_configuration"])
        serialized = handler(self)
        m = {}

        for n, f in type(self).model_fields.items():
            k = f.alias or n
            val = serialized.get(k, serialized.get(n))
            is_nullable_and_explicitly_set = (
                k in nullable_fields
                and (self.__pydantic_fields_set__.intersection({n}))  # pylint: disable=no-member
            )

            if val != UNSET_SENTINEL:
                if (
                    val is not None
                    or k not in optional_fields
                    or is_nullable_and_explicitly_set
                ):
                    m[k] = val

        return m


try:
    DocumentLibraryTool.model_rebuild()
except NameError:
    pass
