Skip to content

AppUtilsAnnotationCreate1

Properties

NameTypeDescriptionNotes
conversation_idstr
user_interview_idstr
annotationstr
start_indexint
end_indexint
labelstr[optional]

Example

python
from syntheticusers.models.app_utils_annotation_create1 import AppUtilsAnnotationCreate1

# TODO update the JSON string below
json = "{}"
# create an instance of AppUtilsAnnotationCreate1 from a JSON string
app_utils_annotation_create1_instance = AppUtilsAnnotationCreate1.from_json(json)
# print the JSON string representation of the object
print(AppUtilsAnnotationCreate1.to_json())

# convert the object into a dict
app_utils_annotation_create1_dict = app_utils_annotation_create1_instance.to_dict()
# create an instance of AppUtilsAnnotationCreate1 from a dict
app_utils_annotation_create1_from_dict = AppUtilsAnnotationCreate1.from_dict(app_utils_annotation_create1_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.