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