Source code for transcript_file_format.structs.word.word_annotations
#!/usr/bin/env python
from __future__ import annotations
import msgspec
from ...custom_types import JSONCompatType
###############################################################################
[docs]
class WordAnnotations(msgspec.Struct):
    meta: JSONCompatType | None = None
    custom: JSONCompatType | None = None