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

from __future__ import annotations
from .encodedpayloadoptions import EncodedPayloadOptions
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 Any, List, Literal, Optional
from typing_extensions import Annotated, NotRequired, TypedDict


class JSONPayloadResponseTypedDict(TypedDict):
    r"""A payload containing arbitrary JSON data.

    Used for complete state snapshots or final results.
    When encrypted, the value field contains base64-encoded encrypted data
    and encoding_options indicates the type of encryption applied.
    """

    value: Any
    r"""The JSON-serializable payload value. When encrypted, contains base64-encoded data."""
    type: Literal["json"]
    r"""Discriminator indicating this is a raw JSON payload."""
    encoding_options: NotRequired[Nullable[List[EncodedPayloadOptions]]]
    r"""Encoding options applied to the payload."""


class JSONPayloadResponse(BaseModel):
    r"""A payload containing arbitrary JSON data.

    Used for complete state snapshots or final results.
    When encrypted, the value field contains base64-encoded encrypted data
    and encoding_options indicates the type of encryption applied.
    """

    value: Any
    r"""The JSON-serializable payload value. When encrypted, contains base64-encoded data."""

    type: Annotated[
        Annotated[Optional[Literal["json"]], AfterValidator(validate_const("json"))],
        pydantic.Field(alias="type"),
    ] = "json"
    r"""Discriminator indicating this is a raw JSON payload."""

    encoding_options: OptionalNullable[List[EncodedPayloadOptions]] = UNSET
    r"""Encoding options applied to the payload."""

    @model_serializer(mode="wrap")
    def serialize_model(self, handler):
        optional_fields = set(["type", "encoding_options"])
        nullable_fields = set(["encoding_options"])
        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:
    JSONPayloadResponse.model_rebuild()
except NameError:
    pass
