Class JourneySendNode.Message.Builder
-
- All Implemented Interfaces:
public final class JourneySendNode.Message.BuilderA builder for Message.
-
-
Method Summary
-
-
Method Detail
-
template
final JourneySendNode.Message.Builder template(String template)
-
template
final JourneySendNode.Message.Builder template(JsonField<String> template)
Sets Builder.template to an arbitrary JSON value.
You should usually call Builder.template with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
data
final JourneySendNode.Message.Builder data(JourneySendNode.Message.Data data)
-
data
final JourneySendNode.Message.Builder data(JsonField<JourneySendNode.Message.Data> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed Data value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
delay
final JourneySendNode.Message.Builder delay(JourneySendNode.Message.Delay delay)
-
delay
final JourneySendNode.Message.Builder delay(JsonField<JourneySendNode.Message.Delay> delay)
Sets Builder.delay to an arbitrary JSON value.
You should usually call Builder.delay with a well-typed Delay value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
to
final JourneySendNode.Message.Builder to(JourneySendNode.Message.To to)
-
to
final JourneySendNode.Message.Builder to(JsonField<JourneySendNode.Message.To> to)
Sets Builder.to to an arbitrary JSON value.
You should usually call Builder.to with a well-typed To value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final JourneySendNode.Message.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final JourneySendNode.Message.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final JourneySendNode.Message.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final JourneySendNode.Message.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final JourneySendNode.Message.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final JourneySendNode.Message build()
Returns an immutable instance of Message.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.template()
-
-
-
-