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_effective
Dict[str, str]
The environment variables as they will be seen by the device, fully resolved with project/fleet/device prioritization rules.
[optional]
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_variables_by_pin200_responseimport (
GetDeviceEnvironmentVariablesByPin200Response,
)
# TODO update the JSON string belowjson="{}"# create an instance of GetDeviceEnvironmentVariablesByPin200Response from a JSON stringget_device_environment_variables_by_pin200_response_instance= (
GetDeviceEnvironmentVariablesByPin200Response.from_json(json)
)
# print the JSON string representation of the objectprint(GetDeviceEnvironmentVariablesByPin200Response.to_json())
# convert the object into a dictget_device_environment_variables_by_pin200_response_dict= (
get_device_environment_variables_by_pin200_response_instance.to_dict()
)
# create an instance of GetDeviceEnvironmentVariablesByPin200Response from a dictget_device_environment_variables_by_pin200_response_from_dict= (
GetDeviceEnvironmentVariablesByPin200Response.from_dict(
get_device_environment_variables_by_pin200_response_dict
)
)