Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

UpdateEnvironmentVariableRequest

Properties

Name Type Description Notes
value str [optional]

Example

from quantcdn.models.update_environment_variable_request import UpdateEnvironmentVariableRequest

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

# convert the object into a dict
update_environment_variable_request_dict = update_environment_variable_request_instance.to_dict()
# create an instance of UpdateEnvironmentVariableRequest from a dict
update_environment_variable_request_from_dict = UpdateEnvironmentVariableRequest.from_dict(update_environment_variable_request_dict)

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