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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-contactcenterinsights</artifactId>
<version>v1-rev20260807-2.0.0</version>
<version>v1-rev20260813-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260807-2.0.0'
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260813-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudCesV1mainToolCall extends com.google.api.client.json.GenericJson {

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String agentName;

/**
* Optional. The input parameters and values for the tool in JSON object format.
* The value may be {@code null}.
Expand All @@ -52,6 +60,15 @@ public final class GoogleCloudCesV1mainToolCall extends com.google.api.client.js
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String parentToolCallId;

/**
* Optional. The name of the tool to execute. Format:
* `projects/{project}/locations/{location}/apps/{app}/tools/{tool}`
Expand All @@ -67,6 +84,25 @@ public final class GoogleCloudCesV1mainToolCall extends com.google.api.client.js
@com.google.api.client.util.Key
private GoogleCloudCesV1mainToolsetTool toolsetTool;

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* @return value or {@code null} for none
*/
public java.lang.String getAgentName() {
return agentName;
}

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* @param agentName agentName or {@code null} for none
*/
public GoogleCloudCesV1mainToolCall setAgentName(java.lang.String agentName) {
this.agentName = agentName;
return this;
}

/**
* Optional. The input parameters and values for the tool in JSON object format.
* @return value or {@code null} for none
Expand Down Expand Up @@ -120,6 +156,27 @@ public GoogleCloudCesV1mainToolCall setId(java.lang.String id) {
return this;
}

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* @return value or {@code null} for none
*/
public java.lang.String getParentToolCallId() {
return parentToolCallId;
}

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* @param parentToolCallId parentToolCallId or {@code null} for none
*/
public GoogleCloudCesV1mainToolCall setParentToolCallId(java.lang.String parentToolCallId) {
this.parentToolCallId = parentToolCallId;
return this;
}

/**
* Optional. The name of the tool to execute. Format:
* `projects/{project}/locations/{location}/apps/{app}/tools/{tool}`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
@SuppressWarnings("javadoc")
public final class GoogleCloudCesV1mainToolResponse extends com.google.api.client.json.GenericJson {

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String agentName;

/**
* Output only. Display name of the tool.
* The value may be {@code null}.
Expand All @@ -44,6 +52,15 @@ public final class GoogleCloudCesV1mainToolResponse extends com.google.api.clien
@com.google.api.client.util.Key
private java.lang.String id;

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String parentToolCallId;

/**
* Required. The tool execution result in JSON object format. Use "output" key to specify tool
* response and "error" key to specify error details (if any). If "output" and "error" keys are
Expand All @@ -68,6 +85,25 @@ public final class GoogleCloudCesV1mainToolResponse extends com.google.api.clien
@com.google.api.client.util.Key
private GoogleCloudCesV1mainToolsetTool toolsetTool;

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* @return value or {@code null} for none
*/
public java.lang.String getAgentName() {
return agentName;
}

/**
* Output only. Human-readable name of the agent that issued this call, e.g. "Contract Architect".
* Empty when the root agent issued it.
* @param agentName agentName or {@code null} for none
*/
public GoogleCloudCesV1mainToolResponse setAgentName(java.lang.String agentName) {
this.agentName = agentName;
return this;
}

/**
* Output only. Display name of the tool.
* @return value or {@code null} for none
Expand Down Expand Up @@ -102,6 +138,27 @@ public GoogleCloudCesV1mainToolResponse setId(java.lang.String id) {
return this;
}

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* @return value or {@code null} for none
*/
public java.lang.String getParentToolCallId() {
return parentToolCallId;
}

/**
* Output only. The id of the tool call that caused this one, when it was issued by a sub-agent
* working on behalf of a parent call. Empty for top-level calls. Lets a client group a sub-
* agent's work under the call that started it instead of rendering every step as a sibling.
* @param parentToolCallId parentToolCallId or {@code null} for none
*/
public GoogleCloudCesV1mainToolResponse setParentToolCallId(java.lang.String parentToolCallId) {
this.parentToolCallId = parentToolCallId;
return this;
}

/**
* Required. The tool execution result in JSON object format. Use "output" key to specify tool
* response and "error" key to specify error details (if any). If "output" and "error" keys are
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-contactcenterinsights</artifactId>
<version>v1-rev20260807-2.0.0</version>
<name>Contact Center AI Insights API v1-rev20260807-2.0.0</name>
<version>v1-rev20260813-2.0.0</version>
<name>Contact Center AI Insights API v1-rev20260813-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-contactcenterinsights</artifactId>
<version>v1-rev20260807-2.0.0</version>
<version>v1-rev20260813-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260807-2.0.0'
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260813-2.0.0'
}
```

Expand Down
Loading