Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.29 KB

File metadata and controls

30 lines (21 loc) · 1.29 KB

AccountsReceivableLedgerPaginated

Properties

Name Type Description Notes
content List[AccountsReceivableLedgerResponse] [optional]
next_page_token str Token for fetching the next page of results [optional]

Example

from cloudbeds_accounting.models.accounts_receivable_ledger_paginated import AccountsReceivableLedgerPaginated

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

# convert the object into a dict
accounts_receivable_ledger_paginated_dict = accounts_receivable_ledger_paginated_instance.to_dict()
# create an instance of AccountsReceivableLedgerPaginated from a dict
accounts_receivable_ledger_paginated_from_dict = AccountsReceivableLedgerPaginated.from_dict(accounts_receivable_ledger_paginated_dict)

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