|
Callback function type for AB_ImExporterAccountInfo_TransactionsForEach() (As soon as transaction.h declares this type itself, this declaration can be removed. Currently transaction.h only declares the LIST2 but not the CONSTLIST2, so we add this declaration here. If transaction.h declares the CONSTLIST2 as well, it wouldn't harm because this typedef is exactly identical to the one from the GWEN_CONSTLIST2_FUNCTION_LIB_DEFS macro.) Definition at line 416 of file imexporter.h. |
|
Takes over ownership of the given account status. |
|
Takes over ownership of the given dated transfer. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Takes over ownership of the given noted transfer. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Takes over ownership of the given standing order. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Takes over ownership of the given transaction. |
|
Takes over ownership of the given transfer. The transfer can be any kind of transfer (like single transfer, debit note, EU transfer etc). This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns a copy of the given account info. Please note that only the data is copied, internal pointers for AB_ImExporterAccountInfo_GetNextTransaction et al are reset in the copy. |
|
|
|
Account name. Used when importing data, not used when exporting. |
|
Account number. Used when importing data, not used when exporting. |
|
Bank code of the institute the account is at. |
|
Bank name of the institute the account is at. |
|
|
|
Returns the first account status stored within the context and removes it. The caller becomes the new owner of the account status returned (if any) which makes him/her responsible for freeing it using AB_AccountStatus_free. |
|
Returns the first dated transfer stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the first noted transfer stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the first standing order stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the first transaction stored within the context. The context remains the owner of the object returned. |
|
Returns the first transfer stored within the context. The context remains the owner of the object returned. The transfer can be any kind of transfer (like single transfer, debit note, EU transfer etc). This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the next account status stored within the context and removes it The caller becomes the new owner of the account status returned (if any) which makes him/her responsible for freeing it using AB_AccountStatus_free. |
|
Returns the next dated transfer stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the next noted transfer stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the next standing order stored within the context. The context remains the owner of the object returned. This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Returns the next transaction stored within the context. The context remains the owner of the object returned. |
|
Returns the next transfer stored within the context. The context remains the owner of the object returned. The transfer can be any kind of transfer (like single transfer, debit note, EU transfer etc). This function is only used in the context of the function AB_Banking_GatherResponses. It is especially not used when importing or exporting normal transactions via AB_ImExporter_Import or AB_ImExporter_Export unless explicitly stated otherwise (see documentation of the importer/exporter in question). |
|
Name of the account' owner. Used when importing data, not used when exporting. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Traverses the list of Transactions in this AccountInfo, calling the callback function 'func' on each list element. Traversal will stop when 'func' returns a non-NULL value, and the routine will return with that value. Otherwise the routine will return NULL. Note: It is not totally clear to me whether this function might interfere with AB_ImExporterAccountInfo_GetFirstTransaction() / AB_ImExporterAccountInfo_GetNextTransaction() . To be on the safe side, you should probably traverse the transaction list only *either* by those mentioned two functions *or* by this ForEach function, but you should probably not mix the access through this two methods. (This doubt be changed in future versions.) Available since aqbanking-1.9.7.
|