Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 902 Bytes

Regions.md

File metadata and controls

31 lines (22 loc) · 902 Bytes

Regions

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
regions List[RegionFields] [optional]

Example

from hyperstack.models.regions import Regions

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

# convert the object into a dict
regions_dict = regions_instance.to_dict()
# create an instance of Regions from a dict
regions_form_dict = regions.from_dict(regions_dict)

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