Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

FixRequest

Properties

Name Type Description Notes
coverage_uuid UUID
created_at datetime
sent_at datetime
point FixLocationRequest
power float Power level of phone at time fix recorded, expressed as proportion of full charge. Range: 0-1. [optional]

Example

from mosquito_alert.models.fix_request import FixRequest

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

# convert the object into a dict
fix_request_dict = fix_request_instance.to_dict()
# create an instance of FixRequest from a dict
fix_request_from_dict = FixRequest.from_dict(fix_request_dict)

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