| Name | Type | Description | Notes |
|---|---|---|---|
| observation | AssignedObservation | [readonly] | |
| annotation_type | str | [readonly] |
from mosquito_alert.models.assignment import Assignment
# TODO update the JSON string below
json = "{}"
# create an instance of Assignment from a JSON string
assignment_instance = Assignment.from_json(json)
# print the JSON string representation of the object
print(Assignment.to_json())
# convert the object into a dict
assignment_dict = assignment_instance.to_dict()
# create an instance of Assignment from a dict
assignment_from_dict = Assignment.from_dict(assignment_dict)