summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-07-09 10:55:31 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2018-07-09 10:55:31 +0200
commit01158a48171d6dbfddec1cf274b70d2e730a1a04 (patch)
tree10af6f856b200e4a6cc8d68e817d1e1727a2e5f6 /src/include
parentcd2538efb57d34d592efc551695a1b1174433ccb (diff)
downloadexchange-01158a48171d6dbfddec1cf274b70d2e730a1a04.tar.gz
exchange-01158a48171d6dbfddec1cf274b70d2e730a1a04.tar.bz2
exchange-01158a48171d6dbfddec1cf274b70d2e730a1a04.zip
Method to mark a merchant as NOT KYC-checked.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_exchangedb_plugin.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index 8c67d9705..80814efb1 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -2248,6 +2248,21 @@ struct TALER_EXCHANGEDB_Plugin
struct TALER_EXCHANGEDB_Session *session,
const char *payto_url);
+
+ /**
+ * Mark a merchant as NOT KYC-checked.
+ *
+ * @param payto_url payto:// URL indentifying the merchant
+ * to unmark. Note, different banks may have different
+ * policies to check their customers.
+ * @return database transaction status.
+ */
+ enum GNUNET_DB_QueryStatus
+ (*unmark_kyc_merchant) (void *cls,
+ struct TALER_EXCHANGEDB_Session *session,
+ const char *payto_url);
+
+
/**
* Retrieve KYC-check status related to a particular merchant.
*