Files
kittycad.py/kittycad/models/annotation_text_options.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

18 lines
363 B
Python

from pydantic import BaseModel
from ..models.annotation_text_alignment_x import AnnotationTextAlignmentX
from ..models.annotation_text_alignment_y import AnnotationTextAlignmentY
class AnnotationTextOptions(BaseModel):
"""Options for annotation text"""
point_size: int
text: str
x: AnnotationTextAlignmentX
y: AnnotationTextAlignmentY