Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.41 KB

DocumentBlockList.md

File metadata and controls

36 lines (27 loc) · 1.41 KB

DocumentBlockList

A object with a data property that contains an array of up to limit document blocks. Each entry in the array is a separate document block object. If no more document block are available, the resulting array will be empty.

Properties

Name Type Description Notes
data List[DocumentBlock] [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]

Example

from clientapi_billingo.models.document_block_list import DocumentBlockList

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

# convert the object into a dict
document_block_list_dict = document_block_list_instance.to_dict()
# create an instance of DocumentBlockList from a dict
document_block_list_from_dict = DocumentBlockList.from_dict(document_block_list_dict)

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