Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.59 KB

SaveTransactionsResponseData.md

File metadata and controls

33 lines (24 loc) · 1.59 KB

SaveTransactionsResponseData

Properties

Name Type Description Notes
transaction_ids List[str] The transaction ids that were saved
transaction TransactionDetail [optional]
transactions List[TransactionDetail] If multiple transactions were specified, the transactions that were saved [optional]
duplicate_import_ids List[str] If multiple transactions were specified, a list of import_ids that were not created because of an existing `import_id` found on the same account [optional]
server_knowledge int The knowledge of the server

Example

from ynab.models.save_transactions_response_data import SaveTransactionsResponseData

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

# convert the object into a dict
save_transactions_response_data_dict = save_transactions_response_data_instance.to_dict()
# create an instance of SaveTransactionsResponseData from a dict
save_transactions_response_data_from_dict = SaveTransactionsResponseData.from_dict(save_transactions_response_data_dict)

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