Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 960 Bytes

AccountResponseData.md

File metadata and controls

29 lines (20 loc) · 960 Bytes

AccountResponseData

Properties

Name Type Description Notes
account Account

Example

from ynab.models.account_response_data import AccountResponseData

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

# convert the object into a dict
account_response_data_dict = account_response_data_instance.to_dict()
# create an instance of AccountResponseData from a dict
account_response_data_from_dict = AccountResponseData.from_dict(account_response_data_dict)

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