Package ai.extend.types
Interface WebhookEndpoint._FinalStage
-
- All Known Implementing Classes:
WebhookEndpoint.Builder
- Enclosing class:
- WebhookEndpoint
public static interface WebhookEndpoint._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebhookEndpoint._FinalStageaddAllEnabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)WebhookEndpoint._FinalStageaddEnabledEvents(WebhookEndpointEventType enabledEvents)WebhookEndpoint._FinalStageadvancedOptions(Nullable<WebhookAdvancedOptions> advancedOptions)WebhookEndpoint._FinalStageadvancedOptions(WebhookAdvancedOptions advancedOptions)WebhookEndpoint._FinalStageadvancedOptions(java.util.Optional<WebhookAdvancedOptions> advancedOptions)Advanced configuration options for the webhook endpoint, including custom headers and payload delivery settings.WebhookEndpointbuild()WebhookEndpoint._FinalStageenabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)The list of event types this endpoint is subscribed to at the global level.
-
-
-
Method Detail
-
build
WebhookEndpoint build()
-
enabledEvents
WebhookEndpoint._FinalStage enabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)
The list of event types this endpoint is subscribed to at the global level. These are events that are not scoped to a specific resource.
-
addEnabledEvents
WebhookEndpoint._FinalStage addEnabledEvents(WebhookEndpointEventType enabledEvents)
-
addAllEnabledEvents
WebhookEndpoint._FinalStage addAllEnabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)
-
advancedOptions
WebhookEndpoint._FinalStage advancedOptions(java.util.Optional<WebhookAdvancedOptions> advancedOptions)
Advanced configuration options for the webhook endpoint, including custom headers and payload delivery settings.
-
advancedOptions
WebhookEndpoint._FinalStage advancedOptions(WebhookAdvancedOptions advancedOptions)
-
advancedOptions
WebhookEndpoint._FinalStage advancedOptions(Nullable<WebhookAdvancedOptions> advancedOptions)
-
-