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.01 KB

VariableEditRequest.md

File metadata and controls

29 lines (21 loc) · 1.01 KB

VariableEditRequest

Properties

Name Type Description Notes
key str the key of the environment variable
value str the value of the environment variable

Example

from qovery.models.variable_edit_request import VariableEditRequest

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

# convert the object into a dict
variable_edit_request_dict = variable_edit_request_instance.to_dict()
# create an instance of VariableEditRequest from a dict
variable_edit_request_form_dict = variable_edit_request.from_dict(variable_edit_request_dict)

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