Appearance
AppUtilsAnnotationCreate2
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| label | str | [optional] |
Example
python
from syntheticusers.models.app_utils_annotation_create2 import AppUtilsAnnotationCreate2
# TODO update the JSON string below
json = "{}"
# create an instance of AppUtilsAnnotationCreate2 from a JSON string
app_utils_annotation_create2_instance = AppUtilsAnnotationCreate2.from_json(json)
# print the JSON string representation of the object
print(AppUtilsAnnotationCreate2.to_json())
# convert the object into a dict
app_utils_annotation_create2_dict = app_utils_annotation_create2_instance.to_dict()
# create an instance of AppUtilsAnnotationCreate2 from a dict
app_utils_annotation_create2_from_dict = AppUtilsAnnotationCreate2.from_dict(app_utils_annotation_create2_dict)