org.http4k.webhook.WebhookId.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.webhook
import dev.forkhandles.values.NonBlankStringValueFactory
import dev.forkhandles.values.StringValue
class WebhookId private constructor(value: String) : StringValue(value) {
companion object : NonBlankStringValueFactory(::WebhookId)
}