Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

SaveTransactionsResponse.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

SaveTransactionsResponse

Properties

Name Type Description Notes
data SaveTransactionsResponseData

Example

from ynab.models.save_transactions_response import SaveTransactionsResponse

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

# convert the object into a dict
save_transactions_response_dict = save_transactions_response_instance.to_dict()
# create an instance of SaveTransactionsResponse from a dict
save_transactions_response_from_dict = SaveTransactionsResponse.from_dict(save_transactions_response_dict)

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