public class DialogNodeNextStep
extends com.ibm.cloud.sdk.core.service.model.GenericModel
Modifier and Type | Class and Description |
---|---|
static interface |
DialogNodeNextStep.Behavior
What happens after the dialog node completes.
|
static class |
DialogNodeNextStep.Builder
Builder.
|
static interface |
DialogNodeNextStep.Selector
Which part of the dialog node to process next.
|
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
behavior |
protected java.lang.String |
dialogNode |
protected java.lang.String |
selector |
Modifier | Constructor and Description |
---|---|
protected |
DialogNodeNextStep(DialogNodeNextStep.Builder builder) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
behavior()
Gets the behavior.
|
java.lang.String |
dialogNode()
Gets the dialogNode.
|
DialogNodeNextStep.Builder |
newBuilder()
New builder.
|
java.lang.String |
selector()
Gets the selector.
|
protected java.lang.String behavior
@SerializedName(value="dialog_node") protected java.lang.String dialogNode
protected java.lang.String selector
protected DialogNodeNextStep(DialogNodeNextStep.Builder builder)
public DialogNodeNextStep.Builder newBuilder()
public java.lang.String behavior()
What happens after the dialog node completes. The valid values depend on the node type: - The following values are valid for any node: - `get_user_input` - `skip_user_input` - `jump_to` - If the node is of type `event_handler` and its parent node is of type `slot` or `frame`, additional values are also valid: - if **event_name**=`filled` and the type of the parent node is `slot`: - `reprompt` - `skip_all_slots` - if **event_name**=`nomatch` and the type of the parent node is `slot`: - `reprompt` - `skip_slot` - `skip_all_slots` - if **event_name**=`generic` and the type of the parent node is `frame`: - `reprompt` - `skip_slot` - `skip_all_slots` If you specify `jump_to`, then you must also specify a value for the `dialog_node` property.
public java.lang.String dialogNode()
The ID of the dialog node to process next. This parameter is required if **behavior**=`jump_to`.
public java.lang.String selector()
Which part of the dialog node to process next.