Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 903 Bytes

File metadata and controls

31 lines (22 loc) · 903 Bytes

Regions

Properties

Name Type Description Notes
message str [optional]
regions List[RegionFields] [optional]
status bool [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_from_dict = Regions.from_dict(regions_dict)

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