You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The environment variables for this device that have been set using host firmware or the Notehub API or UI.
environment_variables_env_default
Dict[str, str]
The environment variables that have been set using the env.default request through the Notecard API.
Example
fromnotehub_py.models.get_device_environment_variables200_responseimportGetDeviceEnvironmentVariables200Response# TODO update the JSON string belowjson="{}"# create an instance of GetDeviceEnvironmentVariables200Response from a JSON stringget_device_environment_variables200_response_instance=GetDeviceEnvironmentVariables200Response.from_json(json)
# print the JSON string representation of the objectprint(GetDeviceEnvironmentVariables200Response.to_json())
# convert the object into a dictget_device_environment_variables200_response_dict=get_device_environment_variables200_response_instance.to_dict()
# create an instance of GetDeviceEnvironmentVariables200Response from a dictget_device_environment_variables200_response_from_dict=GetDeviceEnvironmentVariables200Response.from_dict(get_device_environment_variables200_response_dict)