Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 972 Bytes

File metadata and controls

30 lines (21 loc) · 972 Bytes

Pagination

Properties

Name Type Description Notes
recordset_count int The total count of records in the dataset. [optional]
next_link str The URL to the next page of results. [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.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_from_dict = Pagination.from_dict(pagination_dict)

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