Skip to content

Commit b266e7e

Browse files
1 parent 1434b59 commit b266e7e

File tree

4 files changed

+60
-6
lines changed

4 files changed

+60
-6
lines changed

clients/google-api-services-realtimebidding/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-realtimebidding</artifactId>
25-
<version>v1-rev20240801-2.0.0</version>
25+
<version>v1-rev20240806-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-realtimebidding:v1-rev20240801-2.0.0'
38+
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20240806-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-realtimebidding/v1/2.0.0/com/google/api/services/realtimebidding/v1/model/CreativeServingDecision.java

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,22 @@ public final class CreativeServingDecision extends com.google.api.client.json.Ge
7878
@com.google.api.client.util.Key
7979
private java.util.List<java.lang.String> detectedAttributes;
8080

81+
/**
82+
* Output only. IDs of the detected categories, if any. The taxonomy in which the categories are
83+
* expressed is specified by the detected_categories_taxonomy field. Can be used to filter the
84+
* response of the creatives.list method.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key
88+
private java.util.List<java.lang.String> detectedCategories;
89+
90+
/**
91+
* Output only. The taxonomy in which the detected_categories field is expressed.
92+
* The value may be {@code null}.
93+
*/
94+
@com.google.api.client.util.Key
95+
private java.lang.String detectedCategoriesTaxonomy;
96+
8197
/**
8298
* The set of detected destination URLs for the creative. Can be used to filter the response of
8399
* the creatives.list method.
@@ -268,6 +284,44 @@ public CreativeServingDecision setDetectedAttributes(java.util.List<java.lang.St
268284
return this;
269285
}
270286

287+
/**
288+
* Output only. IDs of the detected categories, if any. The taxonomy in which the categories are
289+
* expressed is specified by the detected_categories_taxonomy field. Can be used to filter the
290+
* response of the creatives.list method.
291+
* @return value or {@code null} for none
292+
*/
293+
public java.util.List<java.lang.String> getDetectedCategories() {
294+
return detectedCategories;
295+
}
296+
297+
/**
298+
* Output only. IDs of the detected categories, if any. The taxonomy in which the categories are
299+
* expressed is specified by the detected_categories_taxonomy field. Can be used to filter the
300+
* response of the creatives.list method.
301+
* @param detectedCategories detectedCategories or {@code null} for none
302+
*/
303+
public CreativeServingDecision setDetectedCategories(java.util.List<java.lang.String> detectedCategories) {
304+
this.detectedCategories = detectedCategories;
305+
return this;
306+
}
307+
308+
/**
309+
* Output only. The taxonomy in which the detected_categories field is expressed.
310+
* @return value or {@code null} for none
311+
*/
312+
public java.lang.String getDetectedCategoriesTaxonomy() {
313+
return detectedCategoriesTaxonomy;
314+
}
315+
316+
/**
317+
* Output only. The taxonomy in which the detected_categories field is expressed.
318+
* @param detectedCategoriesTaxonomy detectedCategoriesTaxonomy or {@code null} for none
319+
*/
320+
public CreativeServingDecision setDetectedCategoriesTaxonomy(java.lang.String detectedCategoriesTaxonomy) {
321+
this.detectedCategoriesTaxonomy = detectedCategoriesTaxonomy;
322+
return this;
323+
}
324+
271325
/**
272326
* The set of detected destination URLs for the creative. Can be used to filter the response of
273327
* the creatives.list method.

clients/google-api-services-realtimebidding/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-realtimebidding</artifactId>
11-
<version>v1-rev20240801-2.0.0</version>
12-
<name>Real-time Bidding API v1-rev20240801-2.0.0</name>
11+
<version>v1-rev20240806-2.0.0</version>
12+
<name>Real-time Bidding API v1-rev20240806-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-realtimebidding/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-realtimebidding</artifactId>
25-
<version>v1-rev20240801-2.0.0</version>
25+
<version>v1-rev20240806-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-realtimebidding:v1-rev20240801-2.0.0'
38+
implementation 'com.google.apis:google-api-services-realtimebidding:v1-rev20240806-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)