Name | Type | Description | Notes |
---|---|---|---|
accounts | List[Account] | ||
server_knowledge | int | The knowledge of the server |
from ynab.models.accounts_response_data import AccountsResponseData
# TODO update the JSON string below
json = "{}"
# create an instance of AccountsResponseData from a JSON string
accounts_response_data_instance = AccountsResponseData.from_json(json)
# print the JSON string representation of the object
print(AccountsResponseData.to_json())
# convert the object into a dict
accounts_response_data_dict = accounts_response_data_instance.to_dict()
# create an instance of AccountsResponseData from a dict
accounts_response_data_from_dict = AccountsResponseData.from_dict(accounts_response_data_dict)