# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# pyformat: disable

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

from __future__ import annotations
from ..types import BaseModel, UNSET_SENTINEL
from ..types.interactions import (
    createagentinteraction as interactions_createagentinteraction,
    createmodelinteraction as interactions_createmodelinteraction,
    interaction as interactions_interaction,
    interactionsseevent as interactions_interactionsseevent,
)
from ..utils import FieldMetadata, PathParamMetadata, RequestMetadata
from ..utils.eventstreaming import AsyncStream, Stream
from pydantic import model_serializer
from typing import Optional, Union
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict


class CreateInteractionGlobalsTypedDict(TypedDict):
    api_version: NotRequired[str]
    r"""Which version of the API to use."""


class CreateInteractionGlobals(BaseModel):
    api_version: Annotated[
        Optional[str],
        FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
    ] = None
    r"""Which version of the API to use."""

    @model_serializer(mode="wrap")
    def serialize_model(self, handler):
        optional_fields = set(["api_version"])
        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))

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

        return m


CreateInteractionRequestBodyParam = TypeAliasType(
    "CreateInteractionRequestBodyParam",
    Union[
        interactions_createagentinteraction.CreateAgentInteractionParam,
        interactions_createmodelinteraction.CreateModelInteractionParam,
    ],
)
r"""The request body."""


CreateInteractionRequestBody = TypeAliasType(
    "CreateInteractionRequestBody",
    Union[
        interactions_createagentinteraction.CreateAgentInteraction,
        interactions_createmodelinteraction.CreateModelInteraction,
    ],
)
r"""The request body."""


class CreateInteractionRequestParam(TypedDict):
    body: CreateInteractionRequestBodyParam
    r"""The request body."""
    api_version: NotRequired[str]
    r"""Which version of the API to use."""


class CreateInteractionRequest(BaseModel):
    body: Annotated[
        CreateInteractionRequestBody,
        FieldMetadata(request=RequestMetadata(media_type="application/json")),
    ]
    r"""The request body."""

    api_version: Annotated[
        Optional[str],
        FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
    ] = None
    r"""Which version of the API to use."""

    @model_serializer(mode="wrap")
    def serialize_model(self, handler):
        optional_fields = set(["api_version"])
        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))

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

        return m


CreateInteractionResponseTypedDict = TypeAliasType(
    "CreateInteractionResponseTypedDict",
    Union[
        interactions_interaction.InteractionTypedDict,
        Union[
            Stream[interactions_interactionsseevent.InteractionSSEEventTypedDict],
            AsyncStream[interactions_interactionsseevent.InteractionSSEEventTypedDict],
        ],
    ],
)


CreateInteractionResponse = TypeAliasType(
    "CreateInteractionResponse",
    Union[
        interactions_interaction.Interaction,
        Union[
            Stream[interactions_interactionsseevent.InteractionSSEEvent],
            AsyncStream[interactions_interactionsseevent.InteractionSSEEvent],
        ],
    ],
)
