Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

DeviceUpdateRequest

Properties

Name Type Description Notes
name str [optional]
fcm_token str
os DeviceOsRequest
mobile_app MobileAppRequest [optional]

Example

from mosquito_alert.models.device_update_request import DeviceUpdateRequest

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

# convert the object into a dict
device_update_request_dict = device_update_request_instance.to_dict()
# create an instance of DeviceUpdateRequest from a dict
device_update_request_from_dict = DeviceUpdateRequest.from_dict(device_update_request_dict)

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