Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 998 Bytes

TransactionsResponse.md

File metadata and controls

29 lines (20 loc) · 998 Bytes

TransactionsResponse

Properties

Name Type Description Notes
data TransactionsResponseData

Example

from ynab.models.transactions_response import TransactionsResponse

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

# convert the object into a dict
transactions_response_dict = transactions_response_instance.to_dict()
# create an instance of TransactionsResponse from a dict
transactions_response_from_dict = TransactionsResponse.from_dict(transactions_response_dict)

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