Class MessageOptions
- All Implemented Interfaces:
com.ibm.cloud.sdk.core.service.model.ObjectModel
public class MessageOptions
extends com.ibm.cloud.sdk.core.service.model.GenericModel
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MessageOptions.Builder
Builder. -
Method Summary
Modifier and Type Method Description String
assistantId()
Gets the assistantId.MessageContext
context()
Gets the context.MessageInput
input()
Gets the input.MessageOptions.Builder
newBuilder()
New builder.String
sessionId()
Gets the sessionId.String
userId()
Gets the userId.Methods inherited from class com.ibm.cloud.sdk.core.service.model.GenericModel
equals, hashCode, toString
-
Method Details
-
newBuilder
New builder.- Returns:
- a MessageOptions builder
-
assistantId
Gets the assistantId.Unique identifier of the assistant. To find the assistant ID in the Watson Assistant user interface, open the assistant settings and click **API Details**. For information about creating assistants, see the [documentation](https://cloud.ibm.com/docs/assistant?topic=assistant-assistant-add#assistant-add-task).
**Note:** Currently, the v2 API does not support creating assistants.
- Returns:
- the assistantId
-
sessionId
Gets the sessionId.Unique identifier of the session.
- Returns:
- the sessionId
-
input
Gets the input.An input object that includes the input text.
- Returns:
- the input
-
context
Gets the context.Context data for the conversation. You can use this property to set or modify context variables, which can also be accessed by dialog nodes. The context is stored by the assistant on a per-session basis.
**Note:** The total size of the context data stored for a stateful session cannot exceed 100KB.
- Returns:
- the context
-
userId
Gets the userId.A string value that identifies the user who is interacting with the assistant. The client must provide a unique identifier for each individual end user who accesses the application. For user-based plans, this user ID is used to identify unique users for billing purposes. This string cannot contain carriage return, newline, or tab characters. If no value is specified in the input, **user_id** is automatically set to the value of **context.global.session_id**.
**Note:** This property is the same as the **user_id** property in the global system context. If **user_id** is specified in both locations, the value specified at the root is used.
- Returns:
- the userId
-