Name |
Type |
Description |
Notes |
filename |
str |
The name of the firmware file |
[optional] |
from notehub_py.models.dfu_action_request import DfuActionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DfuActionRequest from a JSON string
dfu_action_request_instance = DfuActionRequest.from_json(json)
# print the JSON string representation of the object
print(DfuActionRequest.to_json())
# convert the object into a dict
dfu_action_request_dict = dfu_action_request_instance.to_dict()
# create an instance of DfuActionRequest from a dict
dfu_action_request_from_dict = DfuActionRequest.from_dict(dfu_action_request_dict)
[Back to Model list] [Back to API list] [Back to README]