Name |
Type |
Description |
Notes |
environment_variables |
Dict[str, str] |
|
|
from notehub_py.models.environment_variables import EnvironmentVariables
# TODO update the JSON string below
json = "{}"
# create an instance of EnvironmentVariables from a JSON string
environment_variables_instance = EnvironmentVariables.from_json(json)
# print the JSON string representation of the object
print(EnvironmentVariables.to_json())
# convert the object into a dict
environment_variables_dict = environment_variables_instance.to_dict()
# create an instance of EnvironmentVariables from a dict
environment_variables_from_dict = EnvironmentVariables.from_dict(environment_variables_dict)
[Back to Model list] [Back to API list] [Back to README]