# This file was auto-generated by Fern from our API Definition.

import typing

import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
from .event_response_data import EventResponseData


class EventResponse(UniversalBaseModel):
    """
    Event notification message sent when specific events occur during TTS processing
    """

    type: typing.Literal["event"] = pydantic.Field(default="event")
    """
    Message type identifier for events
    """

    data: EventResponseData

    if IS_PYDANTIC_V2:
        model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True)  # type: ignore # Pydantic v2
    else:

        class Config:
            frozen = True
            smart_union = True
            extra = pydantic.Extra.allow
