2023-08-16 16:31:50 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2023-08-16 16:31:50 -07:00
|
|
|
|
|
|
|
from ..models.annotation_line_end import AnnotationLineEnd
|
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class AnnotationLineEndOptions(BaseModel):
|
|
|
|
"""Options for annotation text"""
|
2023-08-16 16:31:50 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
end: AnnotationLineEnd
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
start: AnnotationLineEnd
|