public class CreateDialogNodeOptions
extends com.ibm.cloud.sdk.core.service.model.GenericModel
Modifier and Type | Class and Description |
---|---|
static class |
CreateDialogNodeOptions.Builder
Builder.
|
static interface |
CreateDialogNodeOptions.DigressIn
Whether this top-level dialog node can be digressed into.
|
static interface |
CreateDialogNodeOptions.DigressOut
Whether this dialog node can be returned to after a digression.
|
static interface |
CreateDialogNodeOptions.DigressOutSlots
Whether the user can digress to top-level nodes while filling out slots.
|
static interface |
CreateDialogNodeOptions.EventName
How an `event_handler` node is processed.
|
static interface |
CreateDialogNodeOptions.Type
How the dialog node is processed.
|
Modifier and Type | Method and Description |
---|---|
List<DialogNodeAction> |
actions()
Gets the actions.
|
String |
conditions()
Gets the conditions.
|
DialogNodeContext |
context()
Gets the context.
|
String |
description()
Gets the description.
|
String |
dialogNode()
Gets the dialogNode.
|
String |
digressIn()
Gets the digressIn.
|
String |
digressOut()
Gets the digressOut.
|
String |
digressOutSlots()
Gets the digressOutSlots.
|
Boolean |
disambiguationOptOut()
Gets the disambiguationOptOut.
|
String |
eventName()
Gets the eventName.
|
Boolean |
includeAudit()
Gets the includeAudit.
|
Map<String,Object> |
metadata()
Gets the metadata.
|
CreateDialogNodeOptions.Builder |
newBuilder()
New builder.
|
DialogNodeNextStep |
nextStep()
Gets the nextStep.
|
DialogNodeOutput |
output()
Gets the output.
|
String |
parent()
Gets the parent.
|
String |
previousSibling()
Gets the previousSibling.
|
String |
title()
Gets the title.
|
String |
type()
Gets the type.
|
String |
userLabel()
Gets the userLabel.
|
String |
variable()
Gets the variable.
|
String |
workspaceId()
Gets the workspaceId.
|
public CreateDialogNodeOptions.Builder newBuilder()
public String workspaceId()
Unique identifier of the workspace.
public String dialogNode()
The unique ID of the dialog node. This is an internal identifier used to refer to the dialog node from other dialog nodes and in the diagnostic information included with message responses.
This string can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
public String description()
The description of the dialog node. This string cannot contain carriage return, newline, or tab characters.
public String conditions()
The condition that will trigger the dialog node. This string cannot contain carriage return, newline, or tab characters.
public String parent()
The unique ID of the parent dialog node. This property is omitted if the dialog node has no parent.
public String previousSibling()
The unique ID of the previous sibling dialog node. This property is omitted if the dialog node has no previous sibling.
public DialogNodeOutput output()
The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/assistant?topic=assistant-dialog-overview#dialog-overview-responses).
public DialogNodeContext context()
The context for the dialog node.
public Map<String,Object> metadata()
The metadata for the dialog node.
public DialogNodeNextStep nextStep()
The next step to execute following this dialog node.
public String title()
A human-readable name for the dialog node. If the node is included in disambiguation, this title is used to populate the **label** property of the corresponding suggestion in the `suggestion` response type (unless it is overridden by the **user_label** property). The title is also used to populate the **topic** property in the `connect_to_agent` response type.
This string can contain only Unicode alphanumeric, space, underscore, hyphen, and dot characters.
public String type()
How the dialog node is processed.
public String eventName()
How an `event_handler` node is processed.
public String variable()
The location in the dialog context where output is stored.
public List<DialogNodeAction> actions()
An array of objects describing any actions to be invoked by the dialog node.
public String digressIn()
Whether this top-level dialog node can be digressed into.
public String digressOut()
Whether this dialog node can be returned to after a digression.
public String digressOutSlots()
Whether the user can digress to top-level nodes while filling out slots.
public String userLabel()
A label that can be displayed externally to describe the purpose of the node to users. If set, this label is used to identify the node in disambiguation responses (overriding the value of the **title** property).
public Boolean disambiguationOptOut()
Whether the dialog node should be excluded from disambiguation suggestions. Valid only when **type**=`standard` or `frame`.
public Boolean includeAudit()
Whether to include the audit properties (`created` and `updated` timestamps) in the response.
Copyright © 2024 IBM Cloud. All rights reserved.