Uses of Interface
co.tryterra.terraclient.api.TerraWebhookPayload
-
Packages that use TerraWebhookPayload Package Description co.tryterra.terraclient -
-
Uses of TerraWebhookPayload in co.tryterra.terraclient
Methods in co.tryterra.terraclient that return TerraWebhookPayload Modifier and Type Method Description @Nullable TerraWebhookPayload
WebhookHandlerUtility. parseWebhookPayload(String rawPayload)
Parses the raw payload sent with a webhook request into aTerraWebhookPayload
.Method parameters in co.tryterra.terraclient with type arguments of type TerraWebhookPayload Modifier and Type Method Description WebhookHandlerUtility
WebhookHandlerUtility. addDefaultEventHandler(Consumer<TerraWebhookPayload> consumer)
Registers a handler method that will be called if no other handler method can be resolved for a received event type.WebhookHandlerUtility
WebhookHandlerUtility. addEventHandler(String eventName, Consumer<TerraWebhookPayload> consumer)
Registers a handler method for the given event type.
-