# 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
# pylint: skip-file

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

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


class GetInteractionByIDGlobalsTypedDict(TypedDict):
    api_version: NotRequired[str]
    r"""API version for request routing."""


class GetInteractionByIDGlobals(BaseModel):
    api_version: Annotated[
        Optional[str],
        FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
    ] = None
    r"""API version for request routing."""

    @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


class GetInteractionByIDRequestParam(TypedDict):
    id: str
    r"""Required. The name of the interaction to retrieve."""
    api_version: NotRequired[str]
    r"""API version for request routing."""
    include_input: NotRequired[bool]
    r"""If true, includes the input in the response."""
    last_event_id: NotRequired[str]
    r"""If set, resumes the interaction stream from the chunk after the event
    marked by the event id. Can only be used if `stream` is true.
    """
    stream: NotRequired[bool]
    r"""If true, streams the interaction events as Server-Sent Events."""


class GetInteractionByIDRequest(BaseModel):
    id: Annotated[
        str,
        pydantic.Field(alias="interactionsId"),
        FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
    ]
    r"""Required. The name of the interaction to retrieve."""

    api_version: Annotated[
        Optional[str],
        FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
    ] = None
    r"""API version for request routing."""

    include_input: Annotated[
        Optional[bool],
        FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
    ] = None
    r"""If true, includes the input in the response."""

    last_event_id: Annotated[
        Optional[str],
        FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
    ] = None
    r"""If set, resumes the interaction stream from the chunk after the event
    marked by the event id. Can only be used if `stream` is true.
    """

    stream: Annotated[
        Optional[bool],
        FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
    ] = None
    r"""If true, streams the interaction events as Server-Sent Events."""

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


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


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