Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

AccountsResponseData.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

AccountsResponseData

Properties

Name Type Description Notes
accounts List[Account]
server_knowledge int The knowledge of the server

Example

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)

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