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

import typing

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


class DiarizedEntry(UniversalBaseModel):
    transcript: str = pydantic.Field()
    """
    transcript of the segment of that audio
    """

    start_time_seconds: float = pydantic.Field()
    """
    Start time of the word in seconds.
    """

    end_time_seconds: float = pydantic.Field()
    """
    End time of the word in seconds.
    """

    speaker_id: str = pydantic.Field()
    """
    Speaker ID for the word.
    """

    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
