org.http4k.lens.coreExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-webhook Show documentation
Show all versions of http4k-webhook Show documentation
Http4k Standard webhooks support
package org.http4k.lens
import org.http4k.webhook.WebhookId
import org.http4k.webhook.WebhookTimestamp
import org.http4k.webhook.signing.WebhookSignature
val Header.WEBHOOK_ID get() = Header.value(WebhookId).required("webhook-id")
val Header.WEBHOOK_TIMESTAMP get() = Header.value(WebhookTimestamp).required("webhook-timestamp")
val Header.WEBHOOK_SIGNATURE get() = Header.value(WebhookSignature).required("webhook-signature")
© 2015 - 2025 Weber Informatics LLC | Privacy Policy