Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

File metadata and controls

29 lines (20 loc) · 1.15 KB

ObjectStorageRegionListResponse

Properties

Name Type Description Notes
regions List[ObjectStorageRegionResponse]

Example

from hyperstack.models.object_storage_region_list_response import ObjectStorageRegionListResponse

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

# convert the object into a dict
object_storage_region_list_response_dict = object_storage_region_list_response_instance.to_dict()
# create an instance of ObjectStorageRegionListResponse from a dict
object_storage_region_list_response_from_dict = ObjectStorageRegionListResponse.from_dict(object_storage_region_list_response_dict)

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