| Name |
Type |
Description |
Notes |
| builder |
str |
|
[optional] |
| built |
str |
|
[optional] |
| firmware |
str |
|
[optional] |
| org |
str |
|
[optional] |
| product |
str |
|
[optional] |
| target |
str |
|
[optional] |
| ver_build |
int |
|
[optional] |
| ver_major |
int |
|
[optional] |
| ver_minor |
int |
|
[optional] |
| ver_patch |
int |
|
[optional] |
| version |
str |
|
[optional] |
from notehub_py.models.firmware import Firmware
# TODO update the JSON string below
json = "{}"
# create an instance of Firmware from a JSON string
firmware_instance = Firmware.from_json(json)
# print the JSON string representation of the object
print(Firmware.to_json())
# convert the object into a dict
firmware_dict = firmware_instance.to_dict()
# create an instance of Firmware from a dict
firmware_from_dict = Firmware.from_dict(firmware_dict)
[Back to Model list] [Back to API list] [Back to README]