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

import typing

import typing_extensions


class TimestampsModelParams(typing_extensions.TypedDict):
    words: typing.Sequence[str]
    """
    List of words in the transcript.
    """

    start_time_seconds: typing.Sequence[float]
    """
    List of start times of words in seconds.
    """

    end_time_seconds: typing.Sequence[float]
    """
    List of end times of words in seconds.
    """
