RepositoryWebhookConfiguration

data class RepositoryWebhookConfiguration(val contentType: String? = null, val insecureSsl: Boolean? = null, val secret: String? = null, val url: String)

Constructors

Link copied to clipboard
constructor(contentType: String? = null, insecureSsl: Boolean? = null, secret: String? = null, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val contentType: String? = null

The content type for the payload. Valid values are either form or json.

Link copied to clipboard
val insecureSsl: Boolean? = null

Insecure SSL boolean toggle. Defaults to false.

Link copied to clipboard
val secret: String? = null

The shared secret for the webhook. See API documentation.

Link copied to clipboard
val url: String

The URL of the webhook.