Skip to content

Commit 57cea8c

Browse files
1 parent ebff87a commit 57cea8c

File tree

6 files changed

+80
-18
lines changed

6 files changed

+80
-18
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-rev20250811-2.0.0</version>
25+
<version>v1-rev20250818-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-rev20250811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250818-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22915,28 +22915,30 @@ public List setParent(java.lang.String parent) {
2291522915
}
2291622916

2291722917
/**
22918-
* Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR)
22919-
* and conjunctions (AND). Supported fields include the following: * `project_id` - id of
22920-
* the project to list tags for * `qa_scorecard_revision_id` - id of the scorecard
22921-
* revision to list tags for * `qa_question_id - id of the question to list tags for`
22918+
* Optional. A filter to reduce results to a specific subset. Supports conjunctions (ie.
22919+
* AND operators). Supported fields include the following: * `project_id` - id of the
22920+
* project to list tags for * `qa_scorecard_id` - id of the scorecard to list tags for *
22921+
* `revision_id` - id of the scorecard revision to list tags for` * `qa_question_id - id
22922+
* of the question to list tags for`
2292222923
*/
2292322924
@com.google.api.client.util.Key
2292422925
private java.lang.String filter;
2292522926

22926-
/** Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR) and
22927-
conjunctions (AND). Supported fields include the following: * `project_id` - id of the project to
22928-
list tags for * `qa_scorecard_revision_id` - id of the scorecard revision to list tags for *
22929-
`qa_question_id - id of the question to list tags for`
22927+
/** Optional. A filter to reduce results to a specific subset. Supports conjunctions (ie. AND
22928+
operators). Supported fields include the following: * `project_id` - id of the project to list tags
22929+
for * `qa_scorecard_id` - id of the scorecard to list tags for * `revision_id` - id of the
22930+
scorecard revision to list tags for` * `qa_question_id - id of the question to list tags for`
2293022931
*/
2293122932
public java.lang.String getFilter() {
2293222933
return filter;
2293322934
}
2293422935

2293522936
/**
22936-
* Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR)
22937-
* and conjunctions (AND). Supported fields include the following: * `project_id` - id of
22938-
* the project to list tags for * `qa_scorecard_revision_id` - id of the scorecard
22939-
* revision to list tags for * `qa_question_id - id of the question to list tags for`
22937+
* Optional. A filter to reduce results to a specific subset. Supports conjunctions (ie.
22938+
* AND operators). Supported fields include the following: * `project_id` - id of the
22939+
* project to list tags for * `qa_scorecard_id` - id of the scorecard to list tags for *
22940+
* `revision_id` - id of the scorecard revision to list tags for` * `qa_question_id - id
22941+
* of the question to list tags for`
2294022942
*/
2294122943
public List setFilter(java.lang.String filter) {
2294222944
this.filter = filter;

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ public final class GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue extends
8080
@com.google.api.client.util.Key
8181
private java.lang.Double score;
8282

83+
/**
84+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
85+
* question receives this answer, it will be excluded from any score calculations. This would mean
86+
* that the question was not evaluated.
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.Boolean skipValue;
91+
8392
/**
8493
* String value.
8594
* The value may be {@code null}.
@@ -206,6 +215,27 @@ public GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue setScore(java.lang.
206215
return this;
207216
}
208217

218+
/**
219+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
220+
* question receives this answer, it will be excluded from any score calculations. This would mean
221+
* that the question was not evaluated.
222+
* @return value or {@code null} for none
223+
*/
224+
public java.lang.Boolean getSkipValue() {
225+
return skipValue;
226+
}
227+
228+
/**
229+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
230+
* question receives this answer, it will be excluded from any score calculations. This would mean
231+
* that the question was not evaluated.
232+
* @param skipValue skipValue or {@code null} for none
233+
*/
234+
public GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue setSkipValue(java.lang.Boolean skipValue) {
235+
this.skipValue = skipValue;
236+
return this;
237+
}
238+
209239
/**
210240
* String value.
211241
* @return value or {@code null} for none

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ public final class GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue e
8080
@com.google.api.client.util.Key
8181
private java.lang.Double score;
8282

83+
/**
84+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
85+
* question receives this answer, it will be excluded from any score calculations. This would mean
86+
* that the question was not evaluated.
87+
* The value may be {@code null}.
88+
*/
89+
@com.google.api.client.util.Key
90+
private java.lang.Boolean skipValue;
91+
8392
/**
8493
* String value.
8594
* The value may be {@code null}.
@@ -206,6 +215,27 @@ public GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue setScore(java
206215
return this;
207216
}
208217

218+
/**
219+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
220+
* question receives this answer, it will be excluded from any score calculations. This would mean
221+
* that the question was not evaluated.
222+
* @return value or {@code null} for none
223+
*/
224+
public java.lang.Boolean getSkipValue() {
225+
return skipValue;
226+
}
227+
228+
/**
229+
* Output only. A value of "Skip". If provided, this field may only be set to `true`. If a
230+
* question receives this answer, it will be excluded from any score calculations. This would mean
231+
* that the question was not evaluated.
232+
* @param skipValue skipValue or {@code null} for none
233+
*/
234+
public GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue setSkipValue(java.lang.Boolean skipValue) {
235+
this.skipValue = skipValue;
236+
return this;
237+
}
238+
209239
/**
210240
* String value.
211241
* @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-rev20250811-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250811-2.0.0</name>
11+
<version>v1-rev20250818-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250818-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-rev20250811-2.0.0</version>
25+
<version>v1-rev20250818-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-rev20250811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250818-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)