summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-06 21:51:39 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-06 21:51:39 +0200
commitfb5037b8e3e84ab49eaf7cf82947aef75d942872 (patch)
treec7f4530aa8e893b708f05d31d8b2905c7190310f /src/include
parent36a6731a1a136e8c01be569d040f9bc29adfc13f (diff)
downloadexchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.tar.gz
exchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.tar.bz2
exchange-fb5037b8e3e84ab49eaf7cf82947aef75d942872.zip
-work on auditor tests
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_kyclogic_plugin.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/taler_kyclogic_plugin.h b/src/include/taler_kyclogic_plugin.h
index 0cfade33b..7dbf337ac 100644
--- a/src/include/taler_kyclogic_plugin.h
+++ b/src/include/taler_kyclogic_plugin.h
@@ -150,6 +150,8 @@ typedef void
*
* @param cls closure
* @param status KYC status
+ * @param provider_user_id set to user ID at the provider, or NULL if not supported or unknown
+ * @param provider_legitimization_id set to legitimization process ID at the provider, or NULL if not supported or unknown
* @param expiration until when is the KYC check valid
* @param http_status HTTP status code of @a response
* @param[in] response to return to the HTTP client
@@ -158,6 +160,8 @@ typedef void
(*TALER_KYCLOGIC_ProofCallback)(
void *cls,
enum TALER_KYCLOGIC_KycStatus status,
+ const char *provider_user_id,
+ const char *provider_legitimization_id,
struct GNUNET_TIME_Absolute expiration,
unsigned int http_status,
struct MHD_Response *response);
@@ -172,6 +176,8 @@ typedef void
*
* @param cls closure
* @param account_id account the webhook was about
+ * @param provider_user_id set to user ID at the provider, or NULL if not supported or unknown
+ * @param provider_legitimization_id set to legitimization process ID at the provider, or NULL if not supported or unknown
* @param status KYC status
* @param expiration until when is the KYC check valid
* @param http_status HTTP status code of @a response
@@ -181,6 +187,8 @@ typedef void
(*TALER_KYCLOGIC_WebhookCallback)(
void *cls,
const struct TALER_PaytoHashP *account_id,
+ const char *provider_user_id,
+ const char *provider_legitimization_id,
enum TALER_KYCLOGIC_KycStatus status,
struct GNUNET_TIME_Absolute expiration,
unsigned int http_status,