Class JourneyFetchGetDeleteNode.Builder
-
- All Implemented Interfaces:
public final class JourneyFetchGetDeleteNode.BuilderA builder for JourneyFetchGetDeleteNode.
-
-
Method Summary
-
-
Method Detail
-
mergeStrategy
final JourneyFetchGetDeleteNode.Builder mergeStrategy(JourneyMergeStrategy mergeStrategy)
Strategy for merging a fetch response into the journey run state.
-
mergeStrategy
final JourneyFetchGetDeleteNode.Builder mergeStrategy(JsonField<JourneyMergeStrategy> mergeStrategy)
Sets Builder.mergeStrategy to an arbitrary JSON value.
You should usually call Builder.mergeStrategy with a well-typed JourneyMergeStrategy value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
method
final JourneyFetchGetDeleteNode.Builder method(JourneyFetchGetDeleteNode.Method method)
-
method
final JourneyFetchGetDeleteNode.Builder method(JsonField<JourneyFetchGetDeleteNode.Method> method)
Sets Builder.method to an arbitrary JSON value.
You should usually call Builder.method with a well-typed Method value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final JourneyFetchGetDeleteNode.Builder type(JourneyFetchGetDeleteNode.Type type)
-
type
final JourneyFetchGetDeleteNode.Builder type(JsonField<JourneyFetchGetDeleteNode.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
url
final JourneyFetchGetDeleteNode.Builder url(String url)
-
url
final JourneyFetchGetDeleteNode.Builder url(JsonField<String> url)
Sets Builder.url to an arbitrary JSON value.
You should usually call Builder.url with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
id
final JourneyFetchGetDeleteNode.Builder id(String id)
-
id
final JourneyFetchGetDeleteNode.Builder id(JsonField<String> id)
Sets Builder.id to an arbitrary JSON value.
You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
conditions
final JourneyFetchGetDeleteNode.Builder conditions(JourneyConditionsField conditions)
Condition spec for a journey node. Accepts a single condition atom, an AND/OR group, or an AND/OR nested group. Omit the
conditionsproperty entirely to express "no conditions".
-
conditions
final JourneyFetchGetDeleteNode.Builder conditions(JsonField<JourneyConditionsField> conditions)
Sets Builder.conditions to an arbitrary JSON value.
You should usually call Builder.conditions with a well-typed JourneyConditionsField value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
conditions
final JourneyFetchGetDeleteNode.Builder conditions(JourneyConditionGroup conditionGroup)
Alias for calling conditions with
JourneyConditionsField.ofConditionGroup(conditionGroup).
-
conditions
final JourneyFetchGetDeleteNode.Builder conditions(JourneyConditionNestedGroup conditionNestedGroup)
Alias for calling conditions with
JourneyConditionsField.ofConditionNestedGroup(conditionNestedGroup).
-
conditionsOfConditionAtom
final JourneyFetchGetDeleteNode.Builder conditionsOfConditionAtom(List<String> conditionAtom)
Alias for calling conditions with
JourneyConditionsField.ofConditionAtom(conditionAtom).
-
headers
final JourneyFetchGetDeleteNode.Builder headers(JourneyFetchGetDeleteNode.Headers headers)
-
headers
final JourneyFetchGetDeleteNode.Builder headers(JsonField<JourneyFetchGetDeleteNode.Headers> headers)
Sets Builder.headers to an arbitrary JSON value.
You should usually call Builder.headers with a well-typed Headers value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
queryParams
final JourneyFetchGetDeleteNode.Builder queryParams(JourneyFetchGetDeleteNode.QueryParams queryParams)
-
queryParams
final JourneyFetchGetDeleteNode.Builder queryParams(JsonField<JourneyFetchGetDeleteNode.QueryParams> queryParams)
Sets Builder.queryParams to an arbitrary JSON value.
You should usually call Builder.queryParams with a well-typed QueryParams value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
responseSchema
final JourneyFetchGetDeleteNode.Builder responseSchema(JourneyFetchGetDeleteNode.ResponseSchema responseSchema)
A JSONSchema object (Draft-07-compatible). Validated at runtime by Ajv.
-
responseSchema
final JourneyFetchGetDeleteNode.Builder responseSchema(JsonField<JourneyFetchGetDeleteNode.ResponseSchema> responseSchema)
Sets Builder.responseSchema to an arbitrary JSON value.
You should usually call Builder.responseSchema with a well-typed ResponseSchema value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final JourneyFetchGetDeleteNode.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final JourneyFetchGetDeleteNode.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final JourneyFetchGetDeleteNode.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final JourneyFetchGetDeleteNode.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final JourneyFetchGetDeleteNode.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final JourneyFetchGetDeleteNode build()
Returns an immutable instance of JourneyFetchGetDeleteNode.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.mergeStrategy() .method() .type() .url()
-
-
-
-