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

import typing_extensions


class DiarizedEntryParams(typing_extensions.TypedDict):
    transcript: str
    """
    transcript of the segment of that audio
    """

    start_time_seconds: float
    """
    Start time of the word in seconds.
    """

    end_time_seconds: float
    """
    End time of the word in seconds.
    """

    speaker_id: str
    """
    Speaker ID for the word.
    """
