Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

TrialBalanceResponse

Properties

Name Type Description Notes
var_date date Date of the trial balance. [optional]
deposits_ledger_opening_balance int [optional]
accounts_receivable_ledger_opening_balance int [optional]
guest_ledger_opening_balance int [optional]

Example

from cloudbeds_accounting.models.trial_balance_response import TrialBalanceResponse

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

# convert the object into a dict
trial_balance_response_dict = trial_balance_response_instance.to_dict()
# create an instance of TrialBalanceResponse from a dict
trial_balance_response_from_dict = TrialBalanceResponse.from_dict(trial_balance_response_dict)

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