| 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] |
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)