Skip to content

Commit 0e2ceb3

Browse files
committed
docs(assistant v2): Refactored conversation url to assistant
1 parent 44137cf commit 0e2ceb3

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Scripts/Services/Assistant/v1/Assistant.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4444,7 +4444,7 @@ private void OnUpdateDialogNodeResponse(RESTConnector.Request req, RESTConnector
44444444
/// </summary>
44454445
/// <param name="successCallback">The function that is called when the operation is successful.</param>
44464446
/// <param name="failCallback">The function that is called when the operation fails.</param>
4447-
/// <param name="filter">A cacheable parameter that limits the results to those matching the specified filter. You must specify a filter query that includes a value for `language`, as well as a value for `workspace_id` or `request.context.metadata.deployment`. For more information, see the [documentation](https://cloud.ibm.com/docs/services/conversation/filter-reference.html#filter-query-syntax).</param>
4447+
/// <param name="filter">A cacheable parameter that limits the results to those matching the specified filter. You must specify a filter query that includes a value for `language`, as well as a value for `workspace_id` or `request.context.metadata.deployment`. For more information, see the [documentation](https://cloud.ibm.com/docs/services/assistant/filter-reference.html#filter-query-syntax).</param>
44484448
/// <param name="sort">The attribute by which returned results will be sorted. To reverse the sort order, prefix the value with a minus sign (`-`). Supported values are `name`, `updated`, and `workspace_id`. (optional)</param>
44494449
/// <param name="pageLimit">The number of records to return in each page of results. (optional, default to 100)</param>
44504450
/// <param name="cursor">A token identifying the last object from the previous page of results. (optional)</param>
@@ -4554,7 +4554,7 @@ private void OnListAllLogsResponse(RESTConnector.Request req, RESTConnector.Resp
45544554
/// <param name="failCallback">The function that is called when the operation fails.</param>
45554555
/// <param name="workspaceId">Unique identifier of the workspace.</param>
45564556
/// <param name="sort">The attribute by which returned results will be sorted. To reverse the sort order, prefix the value with a minus sign (`-`). Supported values are `name`, `updated`, and `workspace_id`. (optional)</param>
4557-
/// <param name="filter">A cacheable parameter that limits the results to those matching the specified filter. For more information, see the [documentation](https://cloud.ibm.com/docs/services/conversation/filter-reference.html#filter-query-syntax). (optional)</param>
4557+
/// <param name="filter">A cacheable parameter that limits the results to those matching the specified filter. For more information, see the [documentation](https://cloud.ibm.com/docs/services/assistant/filter-reference.html#filter-query-syntax). (optional)</param>
45584558
/// <param name="pageLimit">The number of records to return in each page of results. (optional, default to 100)</param>
45594559
/// <param name="cursor">A token identifying the last object from the previous page of results. (optional)</param>
45604560
/// <returns><see cref="LogCollection" />LogCollection</returns>

Scripts/Services/Assistant/v1/Models/CreateDialogNode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ public enum EventNameEnum
164164
[fsProperty("previous_sibling")]
165165
public string PreviousSibling { get; set; }
166166
/// <summary>
167-
/// The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/conversation/dialog-overview.html#complex).
167+
/// The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/assistant/dialog-overview.html#complex).
168168
/// </summary>
169-
/// <value>The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/conversation/dialog-overview.html#complex).</value>
169+
/// <value>The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/assistant/dialog-overview.html#complex).</value>
170170
[fsProperty("output")]
171171
public object Output { get; set; }
172172
/// <summary>

Scripts/Services/Assistant/v1/Models/CreateValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ public enum ValueTypeEnum
7373
[fsProperty("synonyms")]
7474
public List<string> Synonyms { get; set; }
7575
/// <summary>
76-
/// An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/conversation/entities.html#creating-entities).
76+
/// An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/assistant/entities.html#creating-entities).
7777
/// </summary>
78-
/// <value>An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/conversation/entities.html#creating-entities).</value>
78+
/// <value>An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/assistant/entities.html#creating-entities).</value>
7979
[fsProperty("patterns")]
8080
public List<string> Patterns { get; set; }
8181
}

Scripts/Services/Assistant/v1/Models/DialogNodeOutput.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace IBM.Watson.DeveloperCloud.Services.Assistant.v1
2222
{
2323
/// <summary>
2424
/// The output of the dialog node. For more information about how to specify dialog node output, see the
25-
/// [documentation](https://cloud.ibm.com/docs/services/conversation/dialog-overview.html#complex).
25+
/// [documentation](https://cloud.ibm.com/docs/services/assistant/dialog-overview.html#complex).
2626
/// </summary>
2727
[fsObject]
2828
public class DialogNodeOutput

Scripts/Services/Assistant/v1/Models/UpdateDialogNode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ public enum EventNameEnum
164164
[fsProperty("previous_sibling")]
165165
public string PreviousSibling { get; set; }
166166
/// <summary>
167-
/// The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/conversation/dialog-overview.html#complex).
167+
/// The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/assistant/dialog-overview.html#complex).
168168
/// </summary>
169-
/// <value>The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/conversation/dialog-overview.html#complex).</value>
169+
/// <value>The output of the dialog node. For more information about how to specify dialog node output, see the [documentation](https://cloud.ibm.com/docs/services/assistant/dialog-overview.html#complex).</value>
170170
[fsProperty("output")]
171171
public object Output { get; set; }
172172
/// <summary>

Scripts/Services/Assistant/v1/Models/UpdateValue.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ public enum ValueTypeEnum
7373
[fsProperty("synonyms")]
7474
public List<string> Synonyms { get; set; }
7575
/// <summary>
76-
/// An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/conversation/entities.html#creating-entities).
76+
/// An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/assistant/entities.html#creating-entities).
7777
/// </summary>
78-
/// <value>An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/conversation/entities.html#creating-entities).</value>
78+
/// <value>An array of patterns for the entity value. You can provide either synonyms or patterns (as indicated by **type**), but not both. A pattern is a regular expression no longer than 128 characters. For more information about how to specify a pattern, see the [documentation](https://cloud.ibm.com/docs/services/assistant/entities.html#creating-entities).</value>
7979
[fsProperty("patterns")]
8080
public List<string> Patterns { get; set; }
8181
}

0 commit comments

Comments
 (0)