Interface Webhook.UpdateDefinitionStages.WithCustomHeaders<ParentT>
-
- Type Parameters:
ParentT- the stage of the parent definition to return to after attaching this definition
- All Known Subinterfaces:
Webhook.UpdateDefinition<ParentT>,Webhook.UpdateDefinitionStages.WithAttach<ParentT>
- Enclosing interface:
- Webhook.UpdateDefinitionStages
public static interface Webhook.UpdateDefinitionStages.WithCustomHeaders<ParentT>The stage of the webhook definition allowing to specify the custom headers that will be added to the notifications.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Webhook.UpdateDefinitionStages.WithAttach<ParentT>withCustomHeader(String name, String value)Specifies a custom header that will be added to notifications.Webhook.UpdateDefinitionStages.WithAttach<ParentT>withCustomHeaders(Map<String,String> customHeaders)Specifies the custom headers that will be added to the notifications.
-
-
-
Method Detail
-
withCustomHeader
Webhook.UpdateDefinitionStages.WithAttach<ParentT> withCustomHeader(String name, String value)
Specifies a custom header that will be added to notifications.Consecutive calls to this method will add additional headers.
- Parameters:
name- of the optional headervalue- of the optional header- Returns:
- the next stage of the definition
-
withCustomHeaders
Webhook.UpdateDefinitionStages.WithAttach<ParentT> withCustomHeaders(Map<String,String> customHeaders)
Specifies the custom headers that will be added to the notifications.- Parameters:
customHeaders- the "Name=Value" custom headers.- Returns:
- the next stage of the definition
-
-