Properties
Name |
Type |
Description |
Notes |
has_more |
bool |
Next page is available |
|
next_offset |
str |
Token used to retrieve the next page |
|
results |
int |
Number of values found in the results |
|
max_per_page |
int |
Maximal number of entries per page |
|
Example
from lakefs_sdk.models.pagination import Pagination
# TODO update the JSON string below
json = "{}"
# create an instance of Pagination from a JSON string
pagination_instance = Pagination.from_json(json)
# print the JSON string representation of the object
print Pagination.to_json()
# convert the object into a dict
pagination_dict = pagination_instance.to_dict()
# create an instance of Pagination from a dict
pagination_form_dict = pagination.from_dict(pagination_dict)
[Back to Model list] [Back to API list] [Back to README]