Skip to content

Files

Latest commit

f5c7fc2 · Dec 31, 2024

History

History
29 lines (20 loc) · 938 Bytes

AccountsResponse.md

File metadata and controls

29 lines (20 loc) · 938 Bytes

AccountsResponse

Properties

Name Type Description Notes
data AccountsResponseData

Example

from ynab.models.accounts_response import AccountsResponse

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

# convert the object into a dict
accounts_response_dict = accounts_response_instance.to_dict()
# create an instance of AccountsResponse from a dict
accounts_response_from_dict = AccountsResponse.from_dict(accounts_response_dict)

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