| Name | Type | Description | Notes |
|---|---|---|---|
| user | SimpleAnnotatorUser | ||
| annotation_id | int | [readonly] | |
| annotation_type | str | [readonly] |
from mosquito_alert.models.user_assignment import UserAssignment
# TODO update the JSON string below
json = "{}"
# create an instance of UserAssignment from a JSON string
user_assignment_instance = UserAssignment.from_json(json)
# print the JSON string representation of the object
print(UserAssignment.to_json())
# convert the object into a dict
user_assignment_dict = user_assignment_instance.to_dict()
# create an instance of UserAssignment from a dict
user_assignment_from_dict = UserAssignment.from_dict(user_assignment_dict)