| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
from hyperstack.models.region_fields import RegionFields
# TODO update the JSON string below
json = "{}"
# create an instance of RegionFields from a JSON string
region_fields_instance = RegionFields.from_json(json)
# print the JSON string representation of the object
print RegionFields.to_json()
# convert the object into a dict
region_fields_dict = region_fields_instance.to_dict()
# create an instance of RegionFields from a dict
region_fields_form_dict = region_fields.from_dict(region_fields_dict)
[Back to Model list] [Back to API list] [Back to README]