Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 928 Bytes

File metadata and controls

28 lines (21 loc) · 928 Bytes

DFUEnv

Properties

Name Type Description Notes
card DFUState [optional]
user DFUState [optional]

Example

from notehub_py.models.dfu_env import DFUEnv

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

# convert the object into a dict
dfu_env_dict = dfu_env_instance.to_dict()
# create an instance of DFUEnv from a dict
dfu_env_from_dict = DFUEnv.from_dict(dfu_env_dict)

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