Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

File metadata and controls

32 lines (23 loc) · 1.6 KB

AccountsReceivableLedgerTotalsResponse

Aggregated totals across all matching accounts receivable ledgers.

Properties

Name Type Description Notes
total float Sum of all charges across matching AR ledgers, in the smallest currency unit. [optional]
paid float Sum of all payments across matching AR ledgers, in the smallest currency unit. [optional]
balance float Sum of outstanding balances across matching AR ledgers (total minus paid), in the smallest currency unit. [optional]

Example

from cloudbeds_accounting.models.accounts_receivable_ledger_totals_response import AccountsReceivableLedgerTotalsResponse

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

# convert the object into a dict
accounts_receivable_ledger_totals_response_dict = accounts_receivable_ledger_totals_response_instance.to_dict()
# create an instance of AccountsReceivableLedgerTotalsResponse from a dict
accounts_receivable_ledger_totals_response_from_dict = AccountsReceivableLedgerTotalsResponse.from_dict(accounts_receivable_ledger_totals_response_dict)

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