diff options
Diffstat (limited to 'src/include/taler_merchant_service.h')
-rw-r--r-- | src/include/taler_merchant_service.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h index 15c1f759..0b5cf232 100644 --- a/src/include/taler_merchant_service.h +++ b/src/include/taler_merchant_service.h @@ -4383,6 +4383,11 @@ struct TALER_MERCHANT_AccountKycRedirectDetail { /** + * Access token the user needs to start a KYC process. + */ + struct TALER_AccountAccessTokenP access_token; + + /** * URL that the user should open in a browser to * proceed with the KYC process (as returned * by the exchange's /kyc-check/ endpoint). Can @@ -4401,6 +4406,20 @@ struct TALER_MERCHANT_AccountKycRedirectDetail */ const char *payto_uri; + /** + * Array of length @e limits_array with (exposed) limits that apply to the + * account. + * + * FIXME: not yet returned. + */ + struct TALER_EXCHANGE_AccountLimit *limits; + + /** + * Length of the @e limits array. + */ + unsigned int limits_length; + + }; |