# 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 TimestampsModel(UniversalBaseModel):
    words: typing.List[str] = pydantic.Field()
    """
    List of words in the transcript.
    """

    start_time_seconds: typing.List[float] = pydantic.Field()
    """
    List of start times of words in seconds.
    """

    end_time_seconds: typing.List[float] = pydantic.Field()
    """
    List of end times of words in seconds.
    """

    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
