# 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 (
    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"""Which version of the API to use."""


class GetInteractionByIDGlobals(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


class GetInteractionByIDRequestParam(TypedDict):
    id: str
    r"""The unique identifier of the interaction to retrieve."""
    stream: NotRequired[bool]
    r"""If set to true, the generated content will be streamed incrementally."""
    last_event_id: NotRequired[str]
    r"""Optional. If set, resumes the interaction stream from the next chunk after the event marked by the event id. Can only be used if `stream` is true."""
    include_input: NotRequired[bool]
    r"""If set to true, includes the input in the response."""
    api_version: NotRequired[str]
    r"""Which version of the API to use."""


class GetInteractionByIDRequest(BaseModel):
    id: Annotated[
        str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
    ]
    r"""The unique identifier of the interaction to retrieve."""

    stream: Annotated[
        Optional[bool],
        FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
    ] = False
    r"""If set to true, the generated content will be streamed incrementally."""

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

    include_input: Annotated[
        Optional[bool],
        pydantic.Field(
            deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible."
        ),
        FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
    ] = False
    r"""If set to true, includes the input in the response."""

    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(
            ["stream", "last_event_id", "include_input", "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


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],
        ],
    ],
)
