Skip to content

Commit 0afc505

Browse files
1 parent 6b65570 commit 0afc505

8 files changed

+200
-6
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-rev20250701-2.0.0</version>
25+
<version>v1-rev20250711-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-rev20250701-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250711-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ public final class GoogleCloudContactcenterinsightsV1ConversationSummarizationSu
5353
@com.google.api.client.util.Key
5454
private java.lang.String conversationModel;
5555

56+
/**
57+
* Agent Assist generator ID.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String generatorId;
62+
5663
/**
5764
* A map that contains metadata about the summarization and the document from which it originates.
5865
* The value may be {@code null}.
@@ -130,6 +137,23 @@ public GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
130137
return this;
131138
}
132139

140+
/**
141+
* Agent Assist generator ID.
142+
* @return value or {@code null} for none
143+
*/
144+
public java.lang.String getGeneratorId() {
145+
return generatorId;
146+
}
147+
148+
/**
149+
* Agent Assist generator ID.
150+
* @param generatorId generatorId or {@code null} for none
151+
*/
152+
public GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData setGeneratorId(java.lang.String generatorId) {
153+
this.generatorId = generatorId;
154+
return this;
155+
}
156+
133157
/**
134158
* A map that contains metadata about the summarization and the document from which it originates.
135159
* @return value or {@code null} for none

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,28 @@ public final class GoogleCloudContactcenterinsightsV1QaQuestion extends com.goog
8383
@com.google.api.client.util.Key
8484
private java.lang.Integer order;
8585

86+
/**
87+
* The configuration of the predefined question. This field will only be set if the Question Type
88+
* is predefined.
89+
* The value may be {@code null}.
90+
*/
91+
@com.google.api.client.util.Key
92+
private GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig predefinedQuestionConfig;
93+
8694
/**
8795
* Question text. E.g., "Did the agent greet the customer?"
8896
* The value may be {@code null}.
8997
*/
9098
@com.google.api.client.util.Key
9199
private java.lang.String questionBody;
92100

101+
/**
102+
* The type of question.
103+
* The value may be {@code null}.
104+
*/
105+
@com.google.api.client.util.Key
106+
private java.lang.String questionType;
107+
93108
/**
94109
* Questions are tagged for categorization and scoring. Tags can either be: - Default Tags: These
95110
* are predefined categories. They are identified by their string value (e.g., "BUSINESS",
@@ -244,6 +259,25 @@ public GoogleCloudContactcenterinsightsV1QaQuestion setOrder(java.lang.Integer o
244259
return this;
245260
}
246261

262+
/**
263+
* The configuration of the predefined question. This field will only be set if the Question Type
264+
* is predefined.
265+
* @return value or {@code null} for none
266+
*/
267+
public GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig getPredefinedQuestionConfig() {
268+
return predefinedQuestionConfig;
269+
}
270+
271+
/**
272+
* The configuration of the predefined question. This field will only be set if the Question Type
273+
* is predefined.
274+
* @param predefinedQuestionConfig predefinedQuestionConfig or {@code null} for none
275+
*/
276+
public GoogleCloudContactcenterinsightsV1QaQuestion setPredefinedQuestionConfig(GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig predefinedQuestionConfig) {
277+
this.predefinedQuestionConfig = predefinedQuestionConfig;
278+
return this;
279+
}
280+
247281
/**
248282
* Question text. E.g., "Did the agent greet the customer?"
249283
* @return value or {@code null} for none
@@ -261,6 +295,23 @@ public GoogleCloudContactcenterinsightsV1QaQuestion setQuestionBody(java.lang.St
261295
return this;
262296
}
263297

298+
/**
299+
* The type of question.
300+
* @return value or {@code null} for none
301+
*/
302+
public java.lang.String getQuestionType() {
303+
return questionType;
304+
}
305+
306+
/**
307+
* The type of question.
308+
* @param questionType questionType or {@code null} for none
309+
*/
310+
public GoogleCloudContactcenterinsightsV1QaQuestion setQuestionType(java.lang.String questionType) {
311+
this.questionType = questionType;
312+
return this;
313+
}
314+
264315
/**
265316
* Questions are tagged for categorization and scoring. Tags can either be: - Default Tags: These
266317
* are predefined categories. They are identified by their string value (e.g., "BUSINESS",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
* Configuration for a predefined question. This field will only be set if the Question Type is
21+
* predefined.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
25+
* explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* The type of the predefined question.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String type;
40+
41+
/**
42+
* The type of the predefined question.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getType() {
46+
return type;
47+
}
48+
49+
/**
50+
* The type of the predefined question.
51+
* @param type type or {@code null} for none
52+
*/
53+
public GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig setType(java.lang.String type) {
54+
this.type = type;
55+
return this;
56+
}
57+
58+
@Override
59+
public GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig set(String fieldName, Object value) {
60+
return (GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig) super.set(fieldName, value);
61+
}
62+
63+
@Override
64+
public GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig clone() {
65+
return (GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig) super.clone();
66+
}
67+
68+
}

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ public final class GoogleCloudContactcenterinsightsV1QaScorecard extends com.goo
5151
@com.google.api.client.util.Key
5252
private java.lang.String displayName;
5353

54+
/**
55+
* Whether the scorecard is the default one for the project. A default scorecard cannot be deleted
56+
* and will always appear first in scorecard selector.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.Boolean isDefault;
61+
5462
/**
5563
* Identifier. The scorecard name. Format:
5664
* projects/{project}/locations/{location}/qaScorecards/{qa_scorecard}
@@ -117,6 +125,25 @@ public GoogleCloudContactcenterinsightsV1QaScorecard setDisplayName(java.lang.St
117125
return this;
118126
}
119127

128+
/**
129+
* Whether the scorecard is the default one for the project. A default scorecard cannot be deleted
130+
* and will always appear first in scorecard selector.
131+
* @return value or {@code null} for none
132+
*/
133+
public java.lang.Boolean getIsDefault() {
134+
return isDefault;
135+
}
136+
137+
/**
138+
* Whether the scorecard is the default one for the project. A default scorecard cannot be deleted
139+
* and will always appear first in scorecard selector.
140+
* @param isDefault isDefault or {@code null} for none
141+
*/
142+
public GoogleCloudContactcenterinsightsV1QaScorecard setIsDefault(java.lang.Boolean isDefault) {
143+
this.isDefault = isDefault;
144+
return this;
145+
}
146+
120147
/**
121148
* Identifier. The scorecard name. Format:
122149
* projects/{project}/locations/{location}/qaScorecards/{qa_scorecard}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ public final class GoogleCloudContactcenterinsightsV1alpha1ConversationSummariza
5353
@com.google.api.client.util.Key
5454
private java.lang.String conversationModel;
5555

56+
/**
57+
* Agent Assist generator ID.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String generatorId;
62+
5663
/**
5764
* A map that contains metadata about the summarization and the document from which it originates.
5865
* The value may be {@code null}.
@@ -130,6 +137,23 @@ public GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggesti
130137
return this;
131138
}
132139

140+
/**
141+
* Agent Assist generator ID.
142+
* @return value or {@code null} for none
143+
*/
144+
public java.lang.String getGeneratorId() {
145+
return generatorId;
146+
}
147+
148+
/**
149+
* Agent Assist generator ID.
150+
* @param generatorId generatorId or {@code null} for none
151+
*/
152+
public GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData setGeneratorId(java.lang.String generatorId) {
153+
this.generatorId = generatorId;
154+
return this;
155+
}
156+
133157
/**
134158
* A map that contains metadata about the summarization and the document from which it originates.
135159
* @return value or {@code null} for none

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-rev20250701-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250701-2.0.0</name>
11+
<version>v1-rev20250711-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250711-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-rev20250701-2.0.0</version>
25+
<version>v1-rev20250711-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-rev20250701-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250711-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)