Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

TrialBalanceReportLedgerBalances

Properties

Name Type Description Notes
deposit_ledger List[TrialBalanceReportCodeInfo] [optional]
guest_ledger List[TrialBalanceReportCodeInfo] [optional]
accounts_receivable List[TrialBalanceReportCodeInfo] [optional]

Example

from cloudbeds_accounting.models.trial_balance_report_ledger_balances import TrialBalanceReportLedgerBalances

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

# convert the object into a dict
trial_balance_report_ledger_balances_dict = trial_balance_report_ledger_balances_instance.to_dict()
# create an instance of TrialBalanceReportLedgerBalances from a dict
trial_balance_report_ledger_balances_from_dict = TrialBalanceReportLedgerBalances.from_dict(trial_balance_report_ledger_balances_dict)

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