Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 1.15 KB

EnvironmentVariableEditRequest.md

File metadata and controls

29 lines (21 loc) · 1.15 KB

EnvironmentVariableEditRequest

Properties

Name Type Description Notes
key str key is case sensitive
value str value of the env variable. [optional]

Example

from qovery.models.environment_variable_edit_request import EnvironmentVariableEditRequest

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

# convert the object into a dict
environment_variable_edit_request_dict = environment_variable_edit_request_instance.to_dict()
# create an instance of EnvironmentVariableEditRequest from a dict
environment_variable_edit_request_form_dict = environment_variable_edit_request.from_dict(environment_variable_edit_request_dict)

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