Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.04 KB

File metadata and controls

28 lines (21 loc) · 1.04 KB

CurrentFirmware

Properties

Name Type Description Notes
metadata Firmware [optional]
version str [optional]

Example

from notehub_py.models.current_firmware import CurrentFirmware

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

# convert the object into a dict
current_firmware_dict = current_firmware_instance.to_dict()
# create an instance of CurrentFirmware from a dict
current_firmware_from_dict = CurrentFirmware.from_dict(current_firmware_dict)

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