Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.47 KB

File metadata and controls

36 lines (27 loc) · 1.47 KB

AnnotationRequest

Properties

Name Type Description Notes
best_photo_uuid UUID [optional]
classification SpeciesClassificationRequest
characteristics SpeciesCharacteristicsRequest [optional]
feedback AnnotationFeedbackRequest [optional]
is_flagged bool [optional] [default to False]
is_executive bool [optional] [default to False]
observation_flags ObservationFlagsRequest [optional]
tags List[str] [optional]

Example

from mosquito_alert.models.annotation_request import AnnotationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of AnnotationRequest from a JSON string
annotation_request_instance = AnnotationRequest.from_json(json)
# print the JSON string representation of the object
print(AnnotationRequest.to_json())

# convert the object into a dict
annotation_request_dict = annotation_request_instance.to_dict()
# create an instance of AnnotationRequest from a dict
annotation_request_from_dict = AnnotationRequest.from_dict(annotation_request_dict)

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