Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1008 Bytes

File metadata and controls

30 lines (21 loc) · 1008 Bytes

EnvironmentFeatures

Properties

Name Type Description Notes
green_status str [optional]
network_optimised bool [optional]

Example

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]