Package ai.extend.types
Interface WebhookEndpointCreate._FinalStage
-
- All Known Implementing Classes:
WebhookEndpointCreate.Builder
- Enclosing class:
- WebhookEndpointCreate
public static interface WebhookEndpointCreate._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebhookEndpointCreate._FinalStageaddAllEnabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)WebhookEndpointCreate._FinalStageaddEnabledEvents(WebhookEndpointEventType enabledEvents)WebhookEndpointCreate._FinalStageadvancedOptions(Nullable<WebhookAdvancedOptions> advancedOptions)WebhookEndpointCreate._FinalStageadvancedOptions(WebhookAdvancedOptions advancedOptions)WebhookEndpointCreate._FinalStageadvancedOptions(java.util.Optional<WebhookAdvancedOptions> advancedOptions)Advanced configuration options for the webhook endpoint, including custom headers and payload delivery settings.WebhookEndpointCreatebuild()WebhookEndpointCreate._FinalStageenabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)The list of event types this endpoint is subscribed to at the global level.
-
-
-
Method Detail
-
build
WebhookEndpointCreate build()
-
enabledEvents
WebhookEndpointCreate._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
WebhookEndpointCreate._FinalStage addEnabledEvents(WebhookEndpointEventType enabledEvents)
-
addAllEnabledEvents
WebhookEndpointCreate._FinalStage addAllEnabledEvents(java.util.List<WebhookEndpointEventType> enabledEvents)
-
advancedOptions
WebhookEndpointCreate._FinalStage advancedOptions(java.util.Optional<WebhookAdvancedOptions> advancedOptions)
Advanced configuration options for the webhook endpoint, including custom headers and payload delivery settings.
-
advancedOptions
WebhookEndpointCreate._FinalStage advancedOptions(WebhookAdvancedOptions advancedOptions)
-
advancedOptions
WebhookEndpointCreate._FinalStage advancedOptions(Nullable<WebhookAdvancedOptions> advancedOptions)
-
-