| Name |
Type |
Description |
Notes |
| green_status |
str |
|
[optional] |
| network_optimised |
bool |
|
[optional] |
from hyperstack.models.environment_features import EnvironmentFeatures
# TODO update the JSON string below
json = "{}"
# create an instance of EnvironmentFeatures from a JSON string
environment_features_instance = EnvironmentFeatures.from_json(json)
# print the JSON string representation of the object
print(EnvironmentFeatures.to_json())
# convert the object into a dict
environment_features_dict = environment_features_instance.to_dict()
# create an instance of EnvironmentFeatures from a dict
environment_features_from_dict = EnvironmentFeatures.from_dict(environment_features_dict)
[Back to Model list] [Back to API list] [Back to README]