Module Values.WebhookSource

Represents a complete Webhook with all its properties, and unique identifier.

Sourcetype nonrec t = {
  1. webhookUrl : WebhookWebhookUrlString.t option;
    (*

    Webhook endpoint URL.

    *)
  2. webhookType : WebhookType.t option;
    (*

    Webhook authentication type.

    *)
  3. webhookId : WebhookWebhookIdString.t option;
    (*

    The unique identifier of the Webhook

    *)
}
Sourceval make : ?webhookUrl:??? -> ?webhookType:??? -> ?webhookId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WebhookWebhookUrlString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t