| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| region |
str |
|
[optional] |
| created_at |
datetime |
|
[optional] |
from hyperstack.models.environment_fields import EnvironmentFields
# TODO update the JSON string below
json = "{}"
# create an instance of EnvironmentFields from a JSON string
environment_fields_instance = EnvironmentFields.from_json(json)
# print the JSON string representation of the object
print EnvironmentFields.to_json()
# convert the object into a dict
environment_fields_dict = environment_fields_instance.to_dict()
# create an instance of EnvironmentFields from a dict
environment_fields_form_dict = environment_fields.from_dict(environment_fields_dict)
[Back to Model list] [Back to API list] [Back to README]