Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 983 Bytes

TransactionResponse.md

File metadata and controls

29 lines (20 loc) · 983 Bytes

TransactionResponse

Properties

Name Type Description Notes
data TransactionResponseData

Example

from ynab.models.transaction_response import TransactionResponse

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

# convert the object into a dict
transaction_response_dict = transaction_response_instance.to_dict()
# create an instance of TransactionResponse from a dict
transaction_response_from_dict = TransactionResponse.from_dict(transaction_response_dict)

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