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

from __future__ import annotations
from .encodedpayloadoptions import EncodedPayloadOptions
from .jsonpatchpayloadvalueresponse import (
    JSONPatchPayloadValueResponse,
    JSONPatchPayloadValueResponseTypedDict,
)
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 JSONPatchPayloadResponseTypedDict(TypedDict):
    r"""A payload containing a list of JSON Patch operations.

    Used for streaming incremental updates to workflow state.
    When encrypted, the value field contains base64-encoded encrypted data
    and encoding_options indicates the type of encryption applied.
    """

    value: JSONPatchPayloadValueResponseTypedDict
    type: Literal["json_patch"]
    r"""Discriminator indicating this is a JSON Patch payload."""
    encoding_options: NotRequired[Nullable[List[EncodedPayloadOptions]]]
    r"""Encoding options applied to the payload."""


class JSONPatchPayloadResponse(BaseModel):
    r"""A payload containing a list of JSON Patch operations.

    Used for streaming incremental updates to workflow state.
    When encrypted, the value field contains base64-encoded encrypted data
    and encoding_options indicates the type of encryption applied.
    """

    value: JSONPatchPayloadValueResponse

    type: Annotated[
        Annotated[Literal["json_patch"], AfterValidator(validate_const("json_patch"))],
        pydantic.Field(alias="type"),
    ] = "json_patch"
    r"""Discriminator indicating this is a JSON Patch 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(["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:
    JSONPatchPayloadResponse.model_rebuild()
except NameError:
    pass
