Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

DeviceDfuStatus.md

File metadata and controls

32 lines (23 loc) · 1.16 KB

DeviceDfuStatus

Properties

Name Type Description Notes
device_uid str Device UID [optional]
dfu_in_progress bool true if there is a DFU currently in progress [optional]
current DeviceDfuStatusCurrent [optional]
status DeviceDfuStateMachine [optional]

Example

from notehub_py.models.device_dfu_status import DeviceDfuStatus

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

# convert the object into a dict
device_dfu_status_dict = device_dfu_status_instance.to_dict()
# create an instance of DeviceDfuStatus from a dict
device_dfu_status_from_dict = DeviceDfuStatus.from_dict(device_dfu_status_dict)

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