You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromynab.models.save_transactions_response_dataimportSaveTransactionsResponseData# TODO update the JSON string belowjson="{}"# create an instance of SaveTransactionsResponseData from a JSON stringsave_transactions_response_data_instance=SaveTransactionsResponseData.from_json(json)
# print the JSON string representation of the objectprint(SaveTransactionsResponseData.to_json())
# convert the object into a dictsave_transactions_response_data_dict=save_transactions_response_data_instance.to_dict()
# create an instance of SaveTransactionsResponseData from a dictsave_transactions_response_data_from_dict=SaveTransactionsResponseData.from_dict(save_transactions_response_data_dict)