Skip to content
This repository was archived by the owner on Dec 3, 2023. It is now read-only.

Commit 57bc112

Browse files
docs: update comment in ListSuggestions to use absolute URL for /apis/design/design_patterns (#595)
PiperOrigin-RevId: 379330928 Source-Author: Google APIs <noreply@google.com> Source-Date: Mon Jun 14 12:35:40 2021 -0700 Source-Repo: googleapis/googleapis Source-Sha: 6ddf77dbd087b634274c93499d8d8d0ff81ea53c Source-Link: googleapis/googleapis@6ddf77d
1 parent c2de427 commit 57bc112

File tree

4 files changed

+33
-28
lines changed

4 files changed

+33
-28
lines changed

google-cloud-dialogflow/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsClient.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,12 +1199,12 @@ public final SuggestSmartRepliesResponse suggestSmartReplies(SuggestSmartReplies
11991199
* <p>This method should be used by human agent client software to fetch auto generated
12001200
* suggestions in real-time, while the conversation with an end user is in progress. The
12011201
* functionality is implemented in terms of the [list
1202-
* pagination](/apis/design/design_patterns#list_pagination) design pattern. The client app should
1203-
* use the `next_page_token` field to fetch the next batch of suggestions. `suggestions` are
1204-
* sorted by `create_time` in descending order. To fetch latest suggestion, just set `page_size`
1205-
* to 1. To fetch new suggestions without duplication, send request with filter
1206-
* `create_time_epoch_microseconds &gt; [first item's create_time of previous request]` and empty
1207-
* page_token.
1202+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination) design
1203+
* pattern. The client app should use the `next_page_token` field to fetch the next batch of
1204+
* suggestions. `suggestions` are sorted by `create_time` in descending order. To fetch latest
1205+
* suggestion, just set `page_size` to 1. To fetch new suggestions without duplication, send
1206+
* request with filter `create_time_epoch_microseconds &gt; [first item's create_time of previous
1207+
* request]` and empty page_token.
12081208
*
12091209
* <p>Sample code:
12101210
*
@@ -1243,12 +1243,12 @@ public final ListSuggestionsPagedResponse listSuggestions(ListSuggestionsRequest
12431243
* <p>This method should be used by human agent client software to fetch auto generated
12441244
* suggestions in real-time, while the conversation with an end user is in progress. The
12451245
* functionality is implemented in terms of the [list
1246-
* pagination](/apis/design/design_patterns#list_pagination) design pattern. The client app should
1247-
* use the `next_page_token` field to fetch the next batch of suggestions. `suggestions` are
1248-
* sorted by `create_time` in descending order. To fetch latest suggestion, just set `page_size`
1249-
* to 1. To fetch new suggestions without duplication, send request with filter
1250-
* `create_time_epoch_microseconds &gt; [first item's create_time of previous request]` and empty
1251-
* page_token.
1246+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination) design
1247+
* pattern. The client app should use the `next_page_token` field to fetch the next batch of
1248+
* suggestions. `suggestions` are sorted by `create_time` in descending order. To fetch latest
1249+
* suggestion, just set `page_size` to 1. To fetch new suggestions without duplication, send
1250+
* request with filter `create_time_epoch_microseconds &gt; [first item's create_time of previous
1251+
* request]` and empty page_token.
12521252
*
12531253
* <p>Sample code:
12541254
*
@@ -1289,12 +1289,12 @@ public final ListSuggestionsPagedResponse listSuggestions(ListSuggestionsRequest
12891289
* <p>This method should be used by human agent client software to fetch auto generated
12901290
* suggestions in real-time, while the conversation with an end user is in progress. The
12911291
* functionality is implemented in terms of the [list
1292-
* pagination](/apis/design/design_patterns#list_pagination) design pattern. The client app should
1293-
* use the `next_page_token` field to fetch the next batch of suggestions. `suggestions` are
1294-
* sorted by `create_time` in descending order. To fetch latest suggestion, just set `page_size`
1295-
* to 1. To fetch new suggestions without duplication, send request with filter
1296-
* `create_time_epoch_microseconds &gt; [first item's create_time of previous request]` and empty
1297-
* page_token.
1292+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination) design
1293+
* pattern. The client app should use the `next_page_token` field to fetch the next batch of
1294+
* suggestions. `suggestions` are sorted by `create_time` in descending order. To fetch latest
1295+
* suggestion, just set `page_size` to 1. To fetch new suggestions without duplication, send
1296+
* request with filter `create_time_epoch_microseconds &gt; [first item's create_time of previous
1297+
* request]` and empty page_token.
12981298
*
12991299
* <p>Sample code:
13001300
*

grpc-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/ParticipantsGrpc.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,8 @@ public void suggestSmartReplies(
696696
* This method should be used by human agent client software to fetch auto
697697
* generated suggestions in real-time, while the conversation with an end user
698698
* is in progress. The functionality is implemented in terms of the
699-
* [list pagination](/apis/design/design_patterns#list_pagination)
699+
* [list
700+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination)
700701
* design pattern. The client app should use the `next_page_token` field
701702
* to fetch the next batch of suggestions. `suggestions` are sorted by
702703
* `create_time` in descending order.
@@ -990,7 +991,8 @@ public void suggestSmartReplies(
990991
* This method should be used by human agent client software to fetch auto
991992
* generated suggestions in real-time, while the conversation with an end user
992993
* is in progress. The functionality is implemented in terms of the
993-
* [list pagination](/apis/design/design_patterns#list_pagination)
994+
* [list
995+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination)
994996
* design pattern. The client app should use the `next_page_token` field
995997
* to fetch the next batch of suggestions. `suggestions` are sorted by
996998
* `create_time` in descending order.
@@ -1181,7 +1183,8 @@ public com.google.cloud.dialogflow.v2beta1.SuggestSmartRepliesResponse suggestSm
11811183
* This method should be used by human agent client software to fetch auto
11821184
* generated suggestions in real-time, while the conversation with an end user
11831185
* is in progress. The functionality is implemented in terms of the
1184-
* [list pagination](/apis/design/design_patterns#list_pagination)
1186+
* [list
1187+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination)
11851188
* design pattern. The client app should use the `next_page_token` field
11861189
* to fetch the next batch of suggestions. `suggestions` are sorted by
11871190
* `create_time` in descending order.
@@ -1373,7 +1376,8 @@ protected ParticipantsFutureStub build(
13731376
* This method should be used by human agent client software to fetch auto
13741377
* generated suggestions in real-time, while the conversation with an end user
13751378
* is in progress. The functionality is implemented in terms of the
1376-
* [list pagination](/apis/design/design_patterns#list_pagination)
1379+
* [list
1380+
* pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination)
13771381
* design pattern. The client app should use the `next_page_token` field
13781382
* to fetch the next batch of suggestions. `suggestions` are sorted by
13791383
* `create_time` in descending order.

proto-google-cloud-dialogflow-v2beta1/src/main/proto/google/cloud/dialogflow/v2beta1/participant.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ service Participants {
169169
// This method should be used by human agent client software to fetch auto
170170
// generated suggestions in real-time, while the conversation with an end user
171171
// is in progress. The functionality is implemented in terms of the
172-
// [list pagination](/apis/design/design_patterns#list_pagination)
172+
// [list
173+
// pagination](https://cloud.google.com/apis/design/design_patterns#list_pagination)
173174
// design pattern. The client app should use the `next_page_token` field
174175
// to fetch the next batch of suggestions. `suggestions` are sorted by
175176
// `create_time` in descending order.

synth.metadata

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
"git": {
55
"name": ".",
66
"remote": "https://github.com/googleapis/java-dialogflow.git",
7-
"sha": "145edbc20c3af264424219e86ee2bebb1bf19012"
7+
"sha": "c2de42785b284d9547e49c7862ab8b099c1604ad"
88
}
99
},
1010
{
1111
"git": {
1212
"name": "googleapis",
1313
"remote": "https://github.com/googleapis/googleapis.git",
14-
"sha": "018bc85c797c8e7f5243b9531a7cd2e6a1bc72b4",
15-
"internalRef": "378977785"
14+
"sha": "6ddf77dbd087b634274c93499d8d8d0ff81ea53c",
15+
"internalRef": "379330928"
1616
}
1717
},
1818
{
1919
"git": {
2020
"name": "googleapis",
2121
"remote": "https://github.com/googleapis/googleapis.git",
22-
"sha": "018bc85c797c8e7f5243b9531a7cd2e6a1bc72b4",
23-
"internalRef": "378977785"
22+
"sha": "6ddf77dbd087b634274c93499d8d8d0ff81ea53c",
23+
"internalRef": "379330928"
2424
}
2525
},
2626
{

0 commit comments

Comments
 (0)