Skip to content

Commit b3d9af0

Browse files
1 parent 64096e7 commit b3d9af0

File tree

5 files changed

+82
-6
lines changed

5 files changed

+82
-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-rev20250818-2.0.0</version>
25+
<version>v1-rev20250821-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-rev20250818-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250821-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: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23788,6 +23788,32 @@ public List setPageToken(java.lang.String pageToken) {
2378823788
return this;
2378923789
}
2379023790

23791+
/**
23792+
* Optional. The source of scorecards are based on how those Scorecards were created,
23793+
* e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used to
23794+
* retrieve Scorecards of one or more sources.
23795+
*/
23796+
@com.google.api.client.util.Key
23797+
private java.util.List<java.lang.String> qaScorecardSources;
23798+
23799+
/** Optional. The source of scorecards are based on how those Scorecards were created, e.g., a
23800+
customer-defined scorecard, a predefined scorecard, etc. This field is used to retrieve Scorecards
23801+
of one or more sources.
23802+
*/
23803+
public java.util.List<java.lang.String> getQaScorecardSources() {
23804+
return qaScorecardSources;
23805+
}
23806+
23807+
/**
23808+
* Optional. The source of scorecards are based on how those Scorecards were created,
23809+
* e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used to
23810+
* retrieve Scorecards of one or more sources.
23811+
*/
23812+
public List setQaScorecardSources(java.util.List<java.lang.String> qaScorecardSources) {
23813+
this.qaScorecardSources = qaScorecardSources;
23814+
return this;
23815+
}
23816+
2379123817
@Override
2379223818
public List set(String parameterName, Object value) {
2379323819
return (List) super.set(parameterName, value);
@@ -24781,6 +24807,32 @@ public List setPageToken(java.lang.String pageToken) {
2478124807
return this;
2478224808
}
2478324809

24810+
/**
24811+
* Optional. The source of scorecards are based on how those Scorecards were created,
24812+
* e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used
24813+
* to retrieve Scorecards Revisions from Scorecards of one or more sources.
24814+
*/
24815+
@com.google.api.client.util.Key
24816+
private java.util.List<java.lang.String> qaScorecardSources;
24817+
24818+
/** Optional. The source of scorecards are based on how those Scorecards were created, e.g., a
24819+
customer-defined scorecard, a predefined scorecard, etc. This field is used to retrieve Scorecards
24820+
Revisions from Scorecards of one or more sources.
24821+
*/
24822+
public java.util.List<java.lang.String> getQaScorecardSources() {
24823+
return qaScorecardSources;
24824+
}
24825+
24826+
/**
24827+
* Optional. The source of scorecards are based on how those Scorecards were created,
24828+
* e.g., a customer-defined scorecard, a predefined scorecard, etc. This field is used
24829+
* to retrieve Scorecards Revisions from Scorecards of one or more sources.
24830+
*/
24831+
public List setQaScorecardSources(java.util.List<java.lang.String> qaScorecardSources) {
24832+
this.qaScorecardSources = qaScorecardSources;
24833+
return this;
24834+
}
24835+
2478424836
@Override
2478524837
public List set(String parameterName, Object value) {
2478624838
return (List) super.set(parameterName, value);

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,13 @@ public final class GoogleCloudContactcenterinsightsV1QaScorecard extends com.goo
6767
@com.google.api.client.util.Key
6868
private java.lang.String name;
6969

70+
/**
71+
* Output only. The source of the scorecard.
72+
* The value may be {@code null}.
73+
*/
74+
@com.google.api.client.util.Key
75+
private java.lang.String source;
76+
7077
/**
7178
* Output only. The most recent time at which the scorecard was updated.
7279
* The value may be {@code null}.
@@ -163,6 +170,23 @@ public GoogleCloudContactcenterinsightsV1QaScorecard setName(java.lang.String na
163170
return this;
164171
}
165172

173+
/**
174+
* Output only. The source of the scorecard.
175+
* @return value or {@code null} for none
176+
*/
177+
public java.lang.String getSource() {
178+
return source;
179+
}
180+
181+
/**
182+
* Output only. The source of the scorecard.
183+
* @param source source or {@code null} for none
184+
*/
185+
public GoogleCloudContactcenterinsightsV1QaScorecard setSource(java.lang.String source) {
186+
this.source = source;
187+
return this;
188+
}
189+
166190
/**
167191
* Output only. The most recent time at which the scorecard was updated.
168192
* @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-rev20250818-2.0.0</version>
12-
<name>Contact Center AI Insights API v1-rev20250818-2.0.0</name>
11+
<version>v1-rev20250821-2.0.0</version>
12+
<name>Contact Center AI Insights API v1-rev20250821-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-rev20250818-2.0.0</version>
25+
<version>v1-rev20250821-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-rev20250818-2.0.0'
38+
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20250821-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)