Name |
Type |
Description |
Notes |
name |
str |
|
|
region |
str |
|
|
from hyperstack.models.create_environment import CreateEnvironment
# TODO update the JSON string below
json = "{}"
# create an instance of CreateEnvironment from a JSON string
create_environment_instance = CreateEnvironment.from_json(json)
# print the JSON string representation of the object
print CreateEnvironment.to_json()
# convert the object into a dict
create_environment_dict = create_environment_instance.to_dict()
# create an instance of CreateEnvironment from a dict
create_environment_form_dict = create_environment.from_dict(create_environment_dict)
[Back to Model list] [Back to API list] [Back to README]