You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="workspaceId">Unique identifier of the workspace</param>
97
+
/// <param name="export">Whether to include all element content in the returned data. If export=false, the returned data includes only information about the element itself. If export=true, all content, including subelements, is included. The default value is false. </param>
/// Get information about an intent, optionally including all intent content.
127
+
/// </summary>
128
+
/// <param name="workspaceId">Unique identifier of the workspace</param>
129
+
/// <param name="intent">The intent name (for example, pizza_order).</param>
130
+
/// <param name="export">Whether to include all element content in the returned data. If export=false, the returned data includes only information about the element itself. If export=true, all content, including subelements, is included. The default value is false. </param>
/// Update an existing intent with new or modified data. You must provide JSON data defining the content of the updated intent. Any elements included in the new JSON will completely replace the equivalent existing elements, including all subelements. (Previously existing subelements are not retained unless they are included in the new JSON.) For example, if you update the user input examples for an intent, the previously existing examples are discarded and replaced with the new examples specified in the JSON input.
136
+
/// </summary>
137
+
/// <param name="workspaceId">Unique identifier of the workspace</param>
138
+
/// <param name="intent">The name of the intent to update.</param>
139
+
/// <param name="request">An UpdateIntent object defining the updated content of the intent.</param>
0 commit comments