Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion java-dialogflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.16.0</version>
<version>26.17.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ public EnvironmentsStub getStub() {
* }</pre>
*
* @param parent Required. The agent to list all environments from. Format: -
* `projects/&lt;Project Number / ID&gt;/agent` - `projects/&lt;Project Number /
* ID&gt;/locations/&lt;Location ID&gt;/agent`
* `projects/&lt;Project ID&gt;/agent` - `projects/&lt;Project ID&gt;/locations/&lt;Location
* ID&gt;/agent`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListEnvironmentsPagedResponse listEnvironments(AgentName parent) {
Expand Down Expand Up @@ -235,8 +235,8 @@ public final ListEnvironmentsPagedResponse listEnvironments(AgentName parent) {
* }</pre>
*
* @param parent Required. The agent to list all environments from. Format: -
* `projects/&lt;Project Number / ID&gt;/agent` - `projects/&lt;Project Number /
* ID&gt;/locations/&lt;Location ID&gt;/agent`
* `projects/&lt;Project ID&gt;/agent` - `projects/&lt;Project ID&gt;/locations/&lt;Location
* ID&gt;/agent`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final ListEnvironmentsPagedResponse listEnvironments(String parent) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ public com.google.cloud.dialogflow.v2.AgentAssistantFeedback getAgentAssistantDe
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down Expand Up @@ -1369,8 +1369,8 @@ public Builder clearAgentAssistantDetailFeedback() {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand All @@ -1387,8 +1387,8 @@ public boolean getClicked() {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand All @@ -1409,8 +1409,8 @@ public Builder setClicked(boolean value) {
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ public interface AnswerFeedbackOrBuilder
* <pre>
* Indicates whether the answer/item was clicked by the human agent
* or not. Default to false.
* For knowledge search, the answer record is considered to be clicked if the
* answer was copied or any URI was clicked.
* For knowledge search and knowledge assist, the answer record is considered
* to be clicked if the answer was copied or any URI was clicked.
* </pre>
*
* <code>bool clicked = 3;</code>
Expand Down
Loading