| Name | Type | Description | Notes |
|---|---|---|---|
| charges | List[TrialBalanceReportCodeInfo] | [optional] | |
| taxes | List[TrialBalanceReportCodeInfo] | [optional] | |
| payments | List[TrialBalanceReportCodeInfo] | [optional] |
from cloudbeds_accounting.models.trial_balance_report_guest_ledger import TrialBalanceReportGuestLedger
# TODO update the JSON string below
json = "{}"
# create an instance of TrialBalanceReportGuestLedger from a JSON string
trial_balance_report_guest_ledger_instance = TrialBalanceReportGuestLedger.from_json(json)
# print the JSON string representation of the object
print(TrialBalanceReportGuestLedger.to_json())
# convert the object into a dict
trial_balance_report_guest_ledger_dict = trial_balance_report_guest_ledger_instance.to_dict()
# create an instance of TrialBalanceReportGuestLedger from a dict
trial_balance_report_guest_ledger_from_dict = TrialBalanceReportGuestLedger.from_dict(trial_balance_report_guest_ledger_dict)