Appearance
Annotation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| conversation_id | str | ||
| user_interview_id | str | ||
| annotation | str | ||
| start_index | int | ||
| end_index | int | ||
| created_at | datetime | ||
| label | str | [optional] |
Example
python
from syntheticusers.models.annotation import Annotation
# TODO update the JSON string below
json = "{}"
# create an instance of Annotation from a JSON string
annotation_instance = Annotation.from_json(json)
# print the JSON string representation of the object
print(Annotation.to_json())
# convert the object into a dict
annotation_dict = annotation_instance.to_dict()
# create an instance of Annotation from a dict
annotation_from_dict = Annotation.from_dict(annotation_dict)