@@ -78,6 +78,22 @@ public final class CreativeServingDecision extends com.google.api.client.json.Ge
78
78
@ com .google .api .client .util .Key
79
79
private java .util .List <java .lang .String > detectedAttributes ;
80
80
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
+
81
97
/**
82
98
* The set of detected destination URLs for the creative. Can be used to filter the response of
83
99
* the creatives.list method.
@@ -268,6 +284,44 @@ public CreativeServingDecision setDetectedAttributes(java.util.List<java.lang.St
268
284
return this ;
269
285
}
270
286
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
+
271
325
/**
272
326
* The set of detected destination URLs for the creative. Can be used to filter the response of
273
327
* the creatives.list method.
0 commit comments