Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

ListReceiptsResponsePage.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

ListReceiptsResponsePage

Properties

Name Type Description Notes
data List[Receipt] [optional]

Example

from fattureincloud_python_sdk.models.list_receipts_response_page import ListReceiptsResponsePage

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

# convert the object into a dict
list_receipts_response_page_dict = list_receipts_response_page_instance.to_dict()
# create an instance of ListReceiptsResponsePage from a dict
list_receipts_response_page_from_dict = ListReceiptsResponsePage.from_dict(list_receipts_response_page_dict)

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