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

import typing

import typing_extensions
from .send_text_data import SendTextDataParams


class SendTextParams(typing_extensions.TypedDict):
    type: typing.Literal["text"]
    data: SendTextDataParams
