1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 2
 3from typing import List
 4
 5from ...._models import BaseModel
 6from .annotation import Annotation
 7
 8__all__ = ["Text"]
 9
10
11class Text(BaseModel):
12    annotations: List[Annotation]
13
14    value: str
15    """The data that makes up the text."""