Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

ObjectStoragePaginationMeta

Properties

Name Type Description Notes
count int
current_page int
total_pages int

Example

from hyperstack.models.object_storage_pagination_meta import ObjectStoragePaginationMeta

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

# convert the object into a dict
object_storage_pagination_meta_dict = object_storage_pagination_meta_instance.to_dict()
# create an instance of ObjectStoragePaginationMeta from a dict
object_storage_pagination_meta_from_dict = ObjectStoragePaginationMeta.from_dict(object_storage_pagination_meta_dict)

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