/usr/include/aqbanking5/aqbanking/jobsingledebitnote.h is in libaqbanking34-dev 5.3.5beta-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | /***************************************************************************
begin : Mon Mar 01 2004
copyright : (C) 2004-2013 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* This file is part of the project "AqBanking". *
* Please see toplevel file COPYING of that project for license details. *
***************************************************************************/
#ifndef AQBANKING_JOBSINGLEDEBITNOTE_H
#define AQBANKING_JOBSINGLEDEBITNOTE_H
#include <aqbanking/job.h>
#include <aqbanking/transaction.h>
#include <aqbanking/transactionlimits.h>
/** @addtogroup G_AB_JOBS_XFER_DEBIT
*
* <p>
* Debit notes are inverse transfers: You specify an account from which you
* want to draw money to on of your accounts.
* </p>
* <p>
* Obviously not every customer is allowed to draw from any other account.
* This feature is only reserved for business customers of credit institutes
* (not restricted by us but by your credit institute).
* </p>
* <p>
* In most cases your are required to sign a special document with your bank
* to be able to use such a jib.
* </p>
*
*/
/*@{*/
#ifdef __cplusplus
extern "C" {
#endif
AQBANKING_API
AB_JOB *AB_JobSingleDebitNote_new(AB_ACCOUNT *a);
/** @name Arguments
*
*
*/
/*@{*/
/**
* This function sets the transfer to be performed.
* Please note that the backend might later replace the transaction given
* here with a validated version (upon execution of the job).
* So if you want to be sure that you have the recent version of the
* transaction you should call @ref AB_JobSingleDebitNote_GetTransaction.
* This transaction MUST NOT contain splits.
*/
AQBANKING_API AQBANKING_DEPRECATED
int AB_JobSingleDebitNote_SetTransaction(AB_JOB *j, const AB_TRANSACTION *t);
/**
* Returns the currently stored transaction for this job. After the job has
* been executed by the backend the transaction returned will very likely
* be a pointer to the validated replacement for the initially given
* transaction.
*/
AQBANKING_API AQBANKING_DEPRECATED
AB_TRANSACTION *AB_JobSingleDebitNote_GetTransaction(const AB_JOB *j);
/*@}*/
/** @name Parameters
*
* The functions in this group are only available after the function
* @ref AB_Job_CheckAvailability has been called and only if that call flagged
* success (i.e. that the job is available).
*/
/*@{*/
/**
* Returns the transaction field limits for this job.
*/
AQBANKING_API AQBANKING_DEPRECATED
const AB_TRANSACTION_LIMITS *AB_JobSingleDebitNote_GetFieldLimits(AB_JOB *j);
/*@}*/
#ifdef __cplusplus
}
#endif
/*@}*/ /* addtogroup */
#endif
|