Skip to content

Commit 5198816

Browse files
1 parent cc04cae commit 5198816

9 files changed

+206
-24
lines changed

clients/google-api-services-contactcenterinsights/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-contactcenterinsights</artifactId>
25-
<version>v1-rev20250922-2.0.0</version>
25+
<version>v1-rev20250923-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250922-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250923-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1Dimension.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1Dimension extends com.googl
6666
@com.google.api.client.util.Key
6767
private GoogleCloudContactcenterinsightsV1DimensionQaQuestionDimensionMetadata qaQuestionDimensionMetadata;
6868

69+
/**
70+
* Output only. Metadata about the QA scorecard dimension.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata qaScorecardDimensionMetadata;
75+
6976
/**
7077
* Output only. Metadata about the agent dimension.
7178
* @return value or {@code null} for none
@@ -151,6 +158,23 @@ public GoogleCloudContactcenterinsightsV1Dimension setQaQuestionDimensionMetadat
151158
return this;
152159
}
153160

161+
/**
162+
* Output only. Metadata about the QA scorecard dimension.
163+
* @return value or {@code null} for none
164+
*/
165+
public GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata getQaScorecardDimensionMetadata() {
166+
return qaScorecardDimensionMetadata;
167+
}
168+
169+
/**
170+
* Output only. Metadata about the QA scorecard dimension.
171+
* @param qaScorecardDimensionMetadata qaScorecardDimensionMetadata or {@code null} for none
172+
*/
173+
public GoogleCloudContactcenterinsightsV1Dimension setQaScorecardDimensionMetadata(GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata qaScorecardDimensionMetadata) {
174+
this.qaScorecardDimensionMetadata = qaScorecardDimensionMetadata;
175+
return this;
176+
}
177+
154178
@Override
155179
public GoogleCloudContactcenterinsightsV1Dimension set(String fieldName, Object value) {
156180
return (GoogleCloudContactcenterinsightsV1Dimension) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.contactcenterinsights.v1.model;
18+
19+
/**
20+
* Metadata about the QA scorecard dimension.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The QA scorecard ID.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String qaScorecardId;
39+
40+
/**
41+
* Optional. The QA scorecard ID.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getQaScorecardId() {
45+
return qaScorecardId;
46+
}
47+
48+
/**
49+
* Optional. The QA scorecard ID.
50+
* @param qaScorecardId qaScorecardId or {@code null} for none
51+
*/
52+
public GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata setQaScorecardId(java.lang.String qaScorecardId) {
53+
this.qaScorecardId = qaScorecardId;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata set(String fieldName, Object value) {
59+
return (GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata clone() {
64+
return (GoogleCloudContactcenterinsightsV1DimensionQaScorecardDimensionMetadata) super.clone();
65+
}
66+
67+
}

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1QueryMetricsResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ public final class GoogleCloudContactcenterinsightsV1QueryMetricsResponse extend
3838
private java.lang.String location;
3939

4040
/**
41-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
42-
* group_by agent is specified this field will contain the average across all agents. This field
43-
* is only populated if the request specifies a Dimension.
41+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
42+
* group_by agent and scorecard_id is specified, this field will contain the average across all
43+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
@@ -80,19 +80,19 @@ public GoogleCloudContactcenterinsightsV1QueryMetricsResponse setLocation(java.l
8080
}
8181

8282
/**
83-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
84-
* group_by agent is specified this field will contain the average across all agents. This field
85-
* is only populated if the request specifies a Dimension.
83+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
84+
* group_by agent and scorecard_id is specified, this field will contain the average across all
85+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
8686
* @return value or {@code null} for none
8787
*/
8888
public GoogleCloudContactcenterinsightsV1QueryMetricsResponseSlice getMacroAverageSlice() {
8989
return macroAverageSlice;
9090
}
9191

9292
/**
93-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
94-
* group_by agent is specified this field will contain the average across all agents. This field
95-
* is only populated if the request specifies a Dimension.
93+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
94+
* group_by agent and scorecard_id is specified, this field will contain the average across all
95+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
9696
* @param macroAverageSlice macroAverageSlice or {@code null} for none
9797
*/
9898
public GoogleCloudContactcenterinsightsV1QueryMetricsResponse setMacroAverageSlice(GoogleCloudContactcenterinsightsV1QueryMetricsResponseSlice macroAverageSlice) {

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1alpha1Dimension.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,13 @@ public final class GoogleCloudContactcenterinsightsV1alpha1Dimension extends com
6666
@com.google.api.client.util.Key
6767
private GoogleCloudContactcenterinsightsV1alpha1DimensionQaQuestionDimensionMetadata qaQuestionDimensionMetadata;
6868

69+
/**
70+
* Output only. Metadata about the QA scorecard dimension.
71+
* The value may be {@code null}.
72+
*/
73+
@com.google.api.client.util.Key
74+
private GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata qaScorecardDimensionMetadata;
75+
6976
/**
7077
* Output only. Metadata about the agent dimension.
7178
* @return value or {@code null} for none
@@ -151,6 +158,23 @@ public GoogleCloudContactcenterinsightsV1alpha1Dimension setQaQuestionDimensionM
151158
return this;
152159
}
153160

161+
/**
162+
* Output only. Metadata about the QA scorecard dimension.
163+
* @return value or {@code null} for none
164+
*/
165+
public GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata getQaScorecardDimensionMetadata() {
166+
return qaScorecardDimensionMetadata;
167+
}
168+
169+
/**
170+
* Output only. Metadata about the QA scorecard dimension.
171+
* @param qaScorecardDimensionMetadata qaScorecardDimensionMetadata or {@code null} for none
172+
*/
173+
public GoogleCloudContactcenterinsightsV1alpha1Dimension setQaScorecardDimensionMetadata(GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata qaScorecardDimensionMetadata) {
174+
this.qaScorecardDimensionMetadata = qaScorecardDimensionMetadata;
175+
return this;
176+
}
177+
154178
@Override
155179
public GoogleCloudContactcenterinsightsV1alpha1Dimension set(String fieldName, Object value) {
156180
return (GoogleCloudContactcenterinsightsV1alpha1Dimension) super.set(fieldName, value);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.contactcenterinsights.v1.model;
18+
19+
/**
20+
* Metadata about the QA scorecard dimension.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The QA scorecard ID.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String qaScorecardId;
39+
40+
/**
41+
* Optional. The QA scorecard ID.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getQaScorecardId() {
45+
return qaScorecardId;
46+
}
47+
48+
/**
49+
* Optional. The QA scorecard ID.
50+
* @param qaScorecardId qaScorecardId or {@code null} for none
51+
*/
52+
public GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata setQaScorecardId(java.lang.String qaScorecardId) {
53+
this.qaScorecardId = qaScorecardId;
54+
return this;
55+
}
56+
57+
@Override
58+
public GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata set(String fieldName, Object value) {
59+
return (GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata clone() {
64+
return (GoogleCloudContactcenterinsightsV1alpha1DimensionQaScorecardDimensionMetadata) super.clone();
65+
}
66+
67+
}

clients/google-api-services-contactcenterinsights/v1/2.0.0/com/google/api/services/contactcenterinsights/v1/model/GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ public final class GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponse
3838
private java.lang.String location;
3939

4040
/**
41-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
42-
* group_by agent is specified this field will contain the average across all agents. This field
43-
* is only populated if the request specifies a Dimension.
41+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
42+
* group_by agent and scorecard_id is specified, this field will contain the average across all
43+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
4444
* The value may be {@code null}.
4545
*/
4646
@com.google.api.client.util.Key
@@ -80,19 +80,19 @@ public GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponse setLocation(
8080
}
8181

8282
/**
83-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
84-
* group_by agent is specified this field will contain the average across all agents. This field
85-
* is only populated if the request specifies a Dimension.
83+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
84+
* group_by agent and scorecard_id is specified, this field will contain the average across all
85+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
8686
* @return value or {@code null} for none
8787
*/
8888
public GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSlice getMacroAverageSlice() {
8989
return macroAverageSlice;
9090
}
9191

9292
/**
93-
* The macro average slice contains aggregated averages across the selected dimension. i.e. if
94-
* group_by agent is specified this field will contain the average across all agents. This field
95-
* is only populated if the request specifies a Dimension.
93+
* The macro average slice contains aggregated averages across all selected dimensions. i.e. if
94+
* group_by agent and scorecard_id is specified, this field will contain the average across all
95+
* agents and all scorecards. This field is only populated if the request specifies a Dimension.
9696
* @param macroAverageSlice macroAverageSlice or {@code null} for none
9797
*/
9898
public GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponse setMacroAverageSlice(GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSlice macroAverageSlice) {

clients/google-api-services-contactcenterinsights/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-contactcenterinsights</artifactId>
11-
<version>v1-rev20250922-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250922-2.0.0</name>
11+
<version>v1-rev20250923-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250923-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-contactcenterinsights/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-contactcenterinsights</artifactId>
25-
<version>v1-rev20250922-2.0.0</version>
25+
<version>v1-rev20250923-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250922-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250923-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)