A object with a data property that contains an array of up to limit documents. Each entry in the array is a separate document object. If no more documents are available, the resulting array will be empty.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[Document] | [optional] | |
| total | int | [optional] | |
| per_page | int | [optional] | |
| current_page | int | [optional] | |
| last_page | int | [optional] | |
| prev_page_url | str | [optional] | |
| next_page_url | str | [optional] |
from clientapi_billingo.models.document_list import DocumentList
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentList from a JSON string
document_list_instance = DocumentList.from_json(json)
# print the JSON string representation of the object
print(DocumentList.to_json())
# convert the object into a dict
document_list_dict = document_list_instance.to_dict()
# create an instance of DocumentList from a dict
document_list_from_dict = DocumentList.from_dict(document_list_dict)