Aggregated totals across all matching accounts receivable ledgers.
| 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] |
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)