Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 936 Bytes

File metadata and controls

31 lines (22 loc) · 936 Bytes

RegionFields

Properties

Name Type Description Notes
id int [optional]
name str [optional]
description str [optional]

Example

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]