@@ -46,6 +46,14 @@ public final class IdFilter extends com.google.api.client.json.GenericJson {
46
46
@ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
47
47
private java .util .List <java .lang .Long > adGroupIds ;
48
48
49
+ /**
50
+ * Optional. YouTube Ad Groups QA to download by ID. All IDs must belong to the same Advertiser or
51
+ * Partner specified in CreateSdfDownloadTaskRequest.
52
+ * The value may be {@code null}.
53
+ */
54
+ @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
55
+ private java .util .List <java .lang .Long > adGroupQaIds ;
56
+
49
57
/**
50
58
* Campaigns to download by ID. All IDs must belong to the same Advertiser or Partner specified in
51
59
* CreateSdfDownloadTaskRequest.
@@ -70,6 +78,14 @@ public final class IdFilter extends com.google.api.client.json.GenericJson {
70
78
@ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
71
79
private java .util .List <java .lang .Long > lineItemIds ;
72
80
81
+ /**
82
+ * Optional. Line Items QA to download by ID. All IDs must belong to the same Advertiser or
83
+ * Partner specified in CreateSdfDownloadTaskRequest.
84
+ * The value may be {@code null}.
85
+ */
86
+ @ com .google .api .client .util .Key @ com .google .api .client .json .JsonString
87
+ private java .util .List <java .lang .Long > lineItemQaIds ;
88
+
73
89
/**
74
90
* Media Products to download by ID. All IDs must belong to the same Advertiser or Partner
75
91
* specified in CreateSdfDownloadTaskRequest.
@@ -116,6 +132,25 @@ public IdFilter setAdGroupIds(java.util.List<java.lang.Long> adGroupIds) {
116
132
return this ;
117
133
}
118
134
135
+ /**
136
+ * Optional. YouTube Ad Groups QA to download by ID. All IDs must belong to the same Advertiser or
137
+ * Partner specified in CreateSdfDownloadTaskRequest.
138
+ * @return value or {@code null} for none
139
+ */
140
+ public java .util .List <java .lang .Long > getAdGroupQaIds () {
141
+ return adGroupQaIds ;
142
+ }
143
+
144
+ /**
145
+ * Optional. YouTube Ad Groups QA to download by ID. All IDs must belong to the same Advertiser or
146
+ * Partner specified in CreateSdfDownloadTaskRequest.
147
+ * @param adGroupQaIds adGroupQaIds or {@code null} for none
148
+ */
149
+ public IdFilter setAdGroupQaIds (java .util .List <java .lang .Long > adGroupQaIds ) {
150
+ this .adGroupQaIds = adGroupQaIds ;
151
+ return this ;
152
+ }
153
+
119
154
/**
120
155
* Campaigns to download by ID. All IDs must belong to the same Advertiser or Partner specified in
121
156
* CreateSdfDownloadTaskRequest.
@@ -173,6 +208,25 @@ public IdFilter setLineItemIds(java.util.List<java.lang.Long> lineItemIds) {
173
208
return this ;
174
209
}
175
210
211
+ /**
212
+ * Optional. Line Items QA to download by ID. All IDs must belong to the same Advertiser or
213
+ * Partner specified in CreateSdfDownloadTaskRequest.
214
+ * @return value or {@code null} for none
215
+ */
216
+ public java .util .List <java .lang .Long > getLineItemQaIds () {
217
+ return lineItemQaIds ;
218
+ }
219
+
220
+ /**
221
+ * Optional. Line Items QA to download by ID. All IDs must belong to the same Advertiser or
222
+ * Partner specified in CreateSdfDownloadTaskRequest.
223
+ * @param lineItemQaIds lineItemQaIds or {@code null} for none
224
+ */
225
+ public IdFilter setLineItemQaIds (java .util .List <java .lang .Long > lineItemQaIds ) {
226
+ this .lineItemQaIds = lineItemQaIds ;
227
+ return this ;
228
+ }
229
+
176
230
/**
177
231
* Media Products to download by ID. All IDs must belong to the same Advertiser or Partner
178
232
* specified in CreateSdfDownloadTaskRequest.
0 commit comments