Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 927 Bytes

File metadata and controls

30 lines (21 loc) · 927 Bytes

Assignment

Properties

Name Type Description Notes
observation AssignedObservation [readonly]
annotation_type str [readonly]

Example

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)

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