Package dev.evercatch.model
Class CreateDestinationRequest
java.lang.Object
dev.evercatch.model.CreateDestinationRequest
Request object for creating a new webhook destination.
CreateDestinationRequest req = CreateDestinationRequest.builder()
.name("Production")
.url("https://myapp.com/webhooks")
.providers(List.of("stripe", "sendgrid"))
.eventTypes(List.of("payment.*", "email.delivered"))
.build();
-
Method Details
-
builder
-
getName
-
getUrl
-
getProviders
-
getEventTypes
-
getHeaders
-