Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

TrialBalanceReportGuestLedger

Properties

Name Type Description Notes
charges List[TrialBalanceReportCodeInfo] [optional]
taxes List[TrialBalanceReportCodeInfo] [optional]
payments List[TrialBalanceReportCodeInfo] [optional]

Example

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)

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