@@ -72,7 +72,9 @@ class AssistantV2 extends BaseService {
7272 * Create a session.
7373 *
7474 * Create a new session. A session is used to send user input to a skill and receive responses. It also maintains the
75- * state of the conversation.
75+ * state of the conversation. A session persists until it is deleted, or until it times out because of inactivity.
76+ * (For more information, see the
77+ * [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-assistant-settings).
7678 *
7779 * @param {Object } params - The parameters to send to the service.
7880 * @param {string } params.assistantId - Unique identifier of the assistant. To find the assistant ID in the Watson
@@ -141,7 +143,8 @@ class AssistantV2 extends BaseService {
141143 /**
142144 * Delete session.
143145 *
144- * Deletes a session explicitly before it times out.
146+ * Deletes a session explicitly before it times out. (For more information about the session inactivity timeout, see
147+ * the [documentation](https://cloud.ibm.com/docs/services/assistant?topic=assistant-assistant-settings)).
145148 *
146149 * @param {Object } params - The parameters to send to the service.
147150 * @param {string } params.assistantId - Unique identifier of the assistant. To find the assistant ID in the Watson
@@ -439,8 +442,8 @@ namespace AssistantV2 {
439442
440443 /** DialogSuggestion. */
441444 export interface DialogSuggestion {
442- /** The user-facing label for the disambiguation option. This label is taken from the **user_label ** property of
443- * the corresponding dialog node.
445+ /** The user-facing label for the disambiguation option. This label is taken from the **title ** or
446+ * **user_label** property of the corresponding dialog node, depending on the disambiguation options .
444447 */
445448 label : string ;
446449 /** An object defining the message input to be sent to the assistant if the user selects the corresponding
0 commit comments