diff options
author | Christian Grothoff <christian@grothoff.org> | 2023-01-27 16:09:25 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2023-01-27 16:09:25 +0100 |
commit | 59716ffdc48ad71a0f047f7e68f04b64d449d408 (patch) | |
tree | 8f913d7c24140df6ea6c2b46e389ffdf4363f618 /src/include/taler_kyclogic_plugin.h | |
parent | d79c23aaabb5dc1c9073555d574bea01b75668cd (diff) |
add logic to store attributes
Diffstat (limited to 'src/include/taler_kyclogic_plugin.h')
-rw-r--r-- | src/include/taler_kyclogic_plugin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/taler_kyclogic_plugin.h b/src/include/taler_kyclogic_plugin.h index 1782af917..a7e222179 100644 --- a/src/include/taler_kyclogic_plugin.h +++ b/src/include/taler_kyclogic_plugin.h @@ -189,6 +189,7 @@ typedef void * @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 attributes user attributes returned by the provider * @param http_status HTTP status code of @a response * @param[in] response to return to the HTTP client */ @@ -202,6 +203,7 @@ typedef void const char *provider_legitimization_id, enum TALER_KYCLOGIC_KycStatus status, struct GNUNET_TIME_Absolute expiration, + const json_t *attributes, unsigned int http_status, struct MHD_Response *response); |