Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

PagedXlsFormListDTO.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

PagedXlsFormListDTO

Properties

Name Type Description Notes
total_items int The total number of items [optional]
page int The current page [optional]
items List[XlsFormDTO] The list of XlsForms [optional]

Example

from data_bridges_client.models.paged_xls_form_list_dto import PagedXlsFormListDTO

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

# convert the object into a dict
paged_xls_form_list_dto_dict = paged_xls_form_list_dto_instance.to_dict()
# create an instance of PagedXlsFormListDTO from a dict
paged_xls_form_list_dto_from_dict = PagedXlsFormListDTO.from_dict(paged_xls_form_list_dto_dict)

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