| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ID of account | [optional] |
| description | str | Description of the account | [optional] |
| name | str | Name of the account | [optional] |
| category | AccountCategory | [optional] | |
| chart_of_account_type | ChartOfAccountType | [optional] |
from cloudbeds_accounting.models.account import Account
# TODO update the JSON string below
json = "{}"
# create an instance of Account from a JSON string
account_instance = Account.from_json(json)
# print the JSON string representation of the object
print(Account.to_json())
# convert the object into a dict
account_dict = account_instance.to_dict()
# create an instance of Account from a dict
account_from_dict = Account.from_dict(account_dict)