Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

TrialBalanceReportCodeInfo

Properties

Name Type Description Notes
code str Transaction code [optional]
description str Description of the row [optional]
amount float Total amount for specific code [optional]

Example

from cloudbeds_accounting.models.trial_balance_report_code_info import TrialBalanceReportCodeInfo

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

# convert the object into a dict
trial_balance_report_code_info_dict = trial_balance_report_code_info_instance.to_dict()
# create an instance of TrialBalanceReportCodeInfo from a dict
trial_balance_report_code_info_from_dict = TrialBalanceReportCodeInfo.from_dict(trial_balance_report_code_info_dict)

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