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

import typing

import typing_extensions
from .event_response_data import EventResponseDataParams


class EventResponseParams(typing_extensions.TypedDict):
    """
    Event notification message sent when specific events occur during TTS processing
    """

    type: typing.Literal["event"]
    """
    Message type identifier for events
    """

    data: EventResponseDataParams
