Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

ObjectStorageRegionResponse

Properties

Name Type Description Notes
name str

Example

from hyperstack.models.object_storage_region_response import ObjectStorageRegionResponse

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

# convert the object into a dict
object_storage_region_response_dict = object_storage_region_response_instance.to_dict()
# create an instance of ObjectStorageRegionResponse from a dict
object_storage_region_response_from_dict = ObjectStorageRegionResponse.from_dict(object_storage_region_response_dict)

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