Skip to content

Annotation

Properties

NameTypeDescriptionNotes
idstr
conversation_idstr
user_interview_idstr
annotationstr
start_indexint
end_indexint
created_atdatetime
labelstr[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)

[Back to API list] [Back to SDK]

Released under the MIT License.