Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 963 Bytes

File metadata and controls

31 lines (22 loc) · 963 Bytes

Environment

Properties

Name Type Description Notes
environment EnvironmentFields [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.environment import Environment

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

# convert the object into a dict
environment_dict = environment_instance.to_dict()
# create an instance of Environment from a dict
environment_from_dict = Environment.from_dict(environment_dict)

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