Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 1.77 KB

ListReceivedDocumentsResponse.md

File metadata and controls

41 lines (31 loc) · 1.77 KB

ListReceivedDocumentsResponse

Properties

Name Type Description Notes
current_page int Current page number. [optional]
first_page_url str First page url. [optional]
var_from int First result of the page. [optional]
last_page int Last page number. [optional]
last_page_url str Last page url. [optional]
next_page_url str Next page url [optional]
path str Request path. [optional]
per_page int Number of result per page. [optional]
prev_page_url str Previous page url. [optional]
to int Last result of the page. [optional]
total int Total number of results [optional]
data List[ReceivedDocument] [optional]

Example

from fattureincloud_python_sdk.models.list_received_documents_response import ListReceivedDocumentsResponse

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

# convert the object into a dict
list_received_documents_response_dict = list_received_documents_response_instance.to_dict()
# create an instance of ListReceivedDocumentsResponse from a dict
list_received_documents_response_from_dict = ListReceivedDocumentsResponse.from_dict(list_received_documents_response_dict)

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