Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1012 Bytes

File metadata and controls

31 lines (22 loc) · 1012 Bytes

UserAssignment

Properties

Name Type Description Notes
user SimpleAnnotatorUser
annotation_id int [readonly]
annotation_type str [readonly]

Example

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)

[Back to Model list] [Back to API list] [Back to README]