Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

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

File metadata and controls

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

EnvVar

Properties

Name Type Description Notes
variable_name str
value str

Example

from epiccore.models.env_var import EnvVar

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

# convert the object into a dict
env_var_dict = env_var_instance.to_dict()
# create an instance of EnvVar from a dict
env_var_form_dict = env_var.from_dict(env_var_dict)

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