MetaPagination
Name |
Type |
Description |
Notes |
count |
int |
|
[optional] |
current_page |
int |
|
[optional] |
per_page |
int |
|
[optional] |
total |
int |
|
[optional] |
total_pages |
int |
|
[optional] |
from firefly_iii_client.models.meta_pagination import MetaPagination
# TODO update the JSON string below
json = "{}"
# create an instance of MetaPagination from a JSON string
meta_pagination_instance = MetaPagination.from_json(json)
# print the JSON string representation of the object
print(MetaPagination.to_json())
# convert the object into a dict
meta_pagination_dict = meta_pagination_instance.to_dict()
# create an instance of MetaPagination from a dict
meta_pagination_form_dict = meta_pagination.from_dict(meta_pagination_dict)
[Back to Model list] [Back to API list] [Back to README]