Skip to content

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 972 Bytes

EnvironmentVariable.md

File metadata and controls

executable file
·
30 lines (21 loc) · 972 Bytes

EnvironmentVariable

Properties

Name Type Description Notes
variable_name str
value str

Example

from epiccore.models.environment_variable import EnvironmentVariable

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

# convert the object into a dict
environment_variable_dict = environment_variable_instance.to_dict()
# create an instance of EnvironmentVariable from a dict
environment_variable_form_dict = environment_variable.from_dict(environment_variable_dict)

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