| Name | Type | Description | Notes |
|---|---|---|---|
| card | DFUState | [optional] | |
| user | DFUState | [optional] |
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)