summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-01-17 16:28:47 +0100
committerChristian Grothoff <christian@grothoff.org>2023-01-17 16:28:47 +0100
commit5f3116d324f4b475365b9a8729a69851419229c3 (patch)
tree1104ec3d69a31bb41b1e9720b13ae47de2f66aae /src/include
parente7966b8e4eed5623cc45ff63edc7c1ece7a58365 (diff)
downloadmerchant-5f3116d324f4b475365b9a8729a69851419229c3.tar.gz
merchant-5f3116d324f4b475365b9a8729a69851419229c3.tar.bz2
merchant-5f3116d324f4b475365b9a8729a69851419229c3.zip
-misc doxygen fixes
Diffstat (limited to 'src/include')
-rw-r--r--src/include/taler_merchant_service.h2
-rw-r--r--src/include/taler_merchantdb_plugin.h11
2 files changed, 7 insertions, 6 deletions
diff --git a/src/include/taler_merchant_service.h b/src/include/taler_merchant_service.h
index 9b38c2bf..e413a7c6 100644
--- a/src/include/taler_merchant_service.h
+++ b/src/include/taler_merchant_service.h
@@ -4647,7 +4647,7 @@ struct TALER_MERCHANT_WebhookDeleteHandle *
TALER_MERCHANT_webhook_delete (
struct GNUNET_CURL_Context *ctx,
const char *backend_url,
- const char *webhok_id,
+ const char *webhook_id,
TALER_MERCHANT_WebhookDeleteCallback cb,
void *cb_cls);
diff --git a/src/include/taler_merchantdb_plugin.h b/src/include/taler_merchantdb_plugin.h
index 764bdab6..707cf2d9 100644
--- a/src/include/taler_merchantdb_plugin.h
+++ b/src/include/taler_merchantdb_plugin.h
@@ -383,16 +383,17 @@ struct TALER_MERCHANTDB_WebhookDetails
};
+
/**
* Typically called by `lookup_webhook_by_event`.
*
* @param cls a `json_t *` JSON array to build
* @param webhook_serial reference to the configured webhook template.
- * @param next_attempt is the time we should make the next request to the webhook.
- * @param url to make request to
- * @param http_method use for the webhook
- * @param header of the webhook
- * @param body of the webhook
+ * @param event_type which type of event triggers this type of webhook
+ * @param url the HTTP URL to make the webhook request to
+ * @param http_method HTTP method use for the webhook
+ * @param header_template template for the header of the webhook
+ * @param body_template template for the body of the webhook
*/
typedef void
(*TALER_MERCHANTDB_WebhookDetailCallback)(void *cls,