Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.07 KB

TransactionsImportResponse.md

File metadata and controls

29 lines (20 loc) · 1.07 KB

TransactionsImportResponse

Properties

Name Type Description Notes
data TransactionsImportResponseData

Example

from ynab.models.transactions_import_response import TransactionsImportResponse

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

# convert the object into a dict
transactions_import_response_dict = transactions_import_response_instance.to_dict()
# create an instance of TransactionsImportResponse from a dict
transactions_import_response_from_dict = TransactionsImportResponse.from_dict(transactions_import_response_dict)

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