Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

ObjectStorageAccessKeyListResponse

Properties

Name Type Description Notes
access_keys List[ObjectStorageAccessKeyResponse]
meta ObjectStoragePaginationMeta

Example

from hyperstack.models.object_storage_access_key_list_response import ObjectStorageAccessKeyListResponse

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

# convert the object into a dict
object_storage_access_key_list_response_dict = object_storage_access_key_list_response_instance.to_dict()
# create an instance of ObjectStorageAccessKeyListResponse from a dict
object_storage_access_key_list_response_from_dict = ObjectStorageAccessKeyListResponse.from_dict(object_storage_access_key_list_response_dict)

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