Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 942 Bytes

SimplePhotoRequest.md

File metadata and controls

29 lines (20 loc) · 942 Bytes

SimplePhotoRequest

Properties

Name Type Description Notes
file bytearray

Example

from mosquito_alert.models.simple_photo_request import SimplePhotoRequest

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

# convert the object into a dict
simple_photo_request_dict = simple_photo_request_instance.to_dict()
# create an instance of SimplePhotoRequest from a dict
simple_photo_request_from_dict = SimplePhotoRequest.from_dict(simple_photo_request_dict)

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