gladwords 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +34 -0
  3. data/.gitignore +4 -0
  4. data/.projections.json +5 -0
  5. data/.rspec +1 -0
  6. data/.rubocop.yml +57 -0
  7. data/.rubocop_todo.yml +32 -0
  8. data/.vim/coc-settings.json +12 -0
  9. data/.vim/install.sh +38 -0
  10. data/.vscode/launch.json +13 -0
  11. data/.vscode/settings.json +9 -0
  12. data/.vscode/tasks.json +21 -0
  13. data/Gemfile +20 -0
  14. data/Gemfile.lock +200 -0
  15. data/LICENSE.txt +21 -0
  16. data/README.md +71 -0
  17. data/Rakefile +15 -0
  18. data/bin/rake +31 -0
  19. data/bin/rspec +31 -0
  20. data/bin/solargraph +29 -0
  21. data/config/environment.rb +3 -0
  22. data/gladwords.code-workspace +11 -0
  23. data/gladwords.gemspec +27 -0
  24. data/lib/ext/rom/inflector.rb +8 -0
  25. data/lib/gladwords.rb +22 -0
  26. data/lib/gladwords/associations.rb +7 -0
  27. data/lib/gladwords/associations/many_to_many.rb +18 -0
  28. data/lib/gladwords/associations/many_to_one.rb +22 -0
  29. data/lib/gladwords/associations/one_to_many.rb +19 -0
  30. data/lib/gladwords/associations/one_to_one.rb +10 -0
  31. data/lib/gladwords/associations/one_to_one_through.rb +8 -0
  32. data/lib/gladwords/commands.rb +7 -0
  33. data/lib/gladwords/commands/core.rb +76 -0
  34. data/lib/gladwords/commands/create.rb +18 -0
  35. data/lib/gladwords/commands/delete.rb +22 -0
  36. data/lib/gladwords/commands/error_wrapper.rb +25 -0
  37. data/lib/gladwords/commands/update.rb +17 -0
  38. data/lib/gladwords/errors.rb +7 -0
  39. data/lib/gladwords/gateway.rb +48 -0
  40. data/lib/gladwords/inflector.rb +20 -0
  41. data/lib/gladwords/relation.rb +197 -0
  42. data/lib/gladwords/relation/association_methods.rb +29 -0
  43. data/lib/gladwords/relation/joined_relation.rb +52 -0
  44. data/lib/gladwords/schema.rb +26 -0
  45. data/lib/gladwords/schema/attributes_inferrer.rb +171 -0
  46. data/lib/gladwords/schema/dsl.rb +28 -0
  47. data/lib/gladwords/schema/inferrer.rb +19 -0
  48. data/lib/gladwords/selector_fields_db.rb +30 -0
  49. data/lib/gladwords/selector_fields_db/v201806.json +3882 -0
  50. data/lib/gladwords/selector_fields_db/v201809.json +4026 -0
  51. data/lib/gladwords/struct.rb +24 -0
  52. data/lib/gladwords/types.rb +27 -0
  53. data/lib/gladwords/version.rb +5 -0
  54. data/rakelib/generate_selector_fields_db.rake +72 -0
  55. data/spec/integration/commands/create_spec.rb +24 -0
  56. data/spec/integration/commands/delete_spec.rb +47 -0
  57. data/spec/integration/commands/update_spec.rb +24 -0
  58. data/spec/shared/campaigns.rb +56 -0
  59. data/spec/shared/labels.rb +17 -0
  60. data/spec/spec_helper.rb +33 -0
  61. data/spec/support/adwords_helpers.rb +41 -0
  62. data/spec/unit/commands/create_spec.rb +85 -0
  63. data/spec/unit/commands/delete_spec.rb +32 -0
  64. data/spec/unit/commands/update_spec.rb +96 -0
  65. data/spec/unit/inflector_spec.rb +11 -0
  66. data/spec/unit/relation/association_methods_spec.rb +91 -0
  67. data/spec/unit/relation_spec.rb +187 -0
  68. data/spec/unit/schema/attributes_inferrer_spec.rb +83 -0
  69. data/spec/unit/selector_fields_db_spec.rb +29 -0
  70. data/spec/unit/types_spec.rb +49 -0
  71. metadata +190 -0
@@ -0,0 +1,4026 @@
1
+ {
2
+ "account_labels": {
3
+ "get": [
4
+ {
5
+ "field": "LabelId",
6
+ "populates": "AccountLabel.id",
7
+ "filterable": true
8
+ },
9
+ {
10
+ "field": "LabelName",
11
+ "populates": "AccountLabel.name",
12
+ "filterable": false
13
+ }
14
+ ]
15
+ },
16
+ "ad_customizer_feeds": {
17
+ "get": [
18
+ {
19
+ "field": "FeedAttributes",
20
+ "populates": "AdCustomizerFeed.feedAttributes",
21
+ "filterable": false
22
+ },
23
+ {
24
+ "field": "FeedId",
25
+ "populates": "AdCustomizerFeed.feedId",
26
+ "filterable": true
27
+ },
28
+ {
29
+ "field": "FeedName",
30
+ "populates": "AdCustomizerFeed.feedName",
31
+ "filterable": true
32
+ },
33
+ {
34
+ "field": "FeedStatus",
35
+ "populates": "AdCustomizerFeed.feedStatus",
36
+ "filterable": true
37
+ }
38
+ ]
39
+ },
40
+ "ad_group_ads": {
41
+ "get": [
42
+ {
43
+ "field": "AccentColor",
44
+ "populates": "ResponsiveDisplayAd.accentColor",
45
+ "filterable": true
46
+ },
47
+ {
48
+ "field": "AdGroupId",
49
+ "populates": "AdGroupAd.adGroupId",
50
+ "filterable": true
51
+ },
52
+ {
53
+ "field": "AdStrengthInfo",
54
+ "populates": "AdGroupAd.adStrengthInfo",
55
+ "filterable": false
56
+ },
57
+ {
58
+ "field": "AdType",
59
+ "populates": "Ad.type",
60
+ "filterable": true
61
+ },
62
+ {
63
+ "field": "AdvertisingId",
64
+ "populates": "Video.advertisingId",
65
+ "filterable": false
66
+ },
67
+ {
68
+ "field": "AllowFlexibleColor",
69
+ "populates": "ResponsiveDisplayAd.allowFlexibleColor",
70
+ "filterable": true
71
+ },
72
+ {
73
+ "field": "Automated",
74
+ "populates": "Ad.automated",
75
+ "filterable": true
76
+ },
77
+ {
78
+ "field": "BaseAdGroupId",
79
+ "populates": "AdGroupAd.baseAdGroupId",
80
+ "filterable": true
81
+ },
82
+ {
83
+ "field": "BaseCampaignId",
84
+ "populates": "AdGroupAd.baseCampaignId",
85
+ "filterable": true
86
+ },
87
+ {
88
+ "field": "BusinessName",
89
+ "populates": "ResponsiveDisplayAd.businessName",
90
+ "filterable": true
91
+ },
92
+ {
93
+ "field": "CallOnlyAdBusinessName",
94
+ "populates": "CallOnlyAd.businessName",
95
+ "filterable": true
96
+ },
97
+ {
98
+ "field": "CallOnlyAdCallTracked",
99
+ "populates": "CallOnlyAd.callTracked",
100
+ "filterable": false
101
+ },
102
+ {
103
+ "field": "CallOnlyAdConversionTypeId",
104
+ "populates": "CallOnlyAd.conversionTypeId",
105
+ "filterable": false
106
+ },
107
+ {
108
+ "field": "CallOnlyAdCountryCode",
109
+ "populates": "CallOnlyAd.countryCode",
110
+ "filterable": true
111
+ },
112
+ {
113
+ "field": "CallOnlyAdDescription1",
114
+ "populates": "CallOnlyAd.description1",
115
+ "filterable": true
116
+ },
117
+ {
118
+ "field": "CallOnlyAdDescription2",
119
+ "populates": "CallOnlyAd.description2",
120
+ "filterable": true
121
+ },
122
+ {
123
+ "field": "CallOnlyAdDisableCallConversion",
124
+ "populates": "CallOnlyAd.disableCallConversion",
125
+ "filterable": false
126
+ },
127
+ {
128
+ "field": "CallOnlyAdPhoneNumber",
129
+ "populates": "CallOnlyAd.phoneNumber",
130
+ "filterable": true
131
+ },
132
+ {
133
+ "field": "CallOnlyAdPhoneNumberVerificationUrl",
134
+ "populates": "CallOnlyAd.phoneNumberVerificationUrl",
135
+ "filterable": true
136
+ },
137
+ {
138
+ "field": "CallToActionText",
139
+ "populates": "ResponsiveDisplayAd.callToActionText",
140
+ "filterable": true
141
+ },
142
+ {
143
+ "field": "CreationTime",
144
+ "populates": "Media.creationTime",
145
+ "filterable": false
146
+ },
147
+ {
148
+ "field": "CreativeFinalAppUrls",
149
+ "populates": "Ad.finalAppUrls",
150
+ "filterable": true
151
+ },
152
+ {
153
+ "field": "CreativeFinalMobileUrls",
154
+ "populates": "Ad.finalMobileUrls",
155
+ "filterable": true
156
+ },
157
+ {
158
+ "field": "CreativeFinalUrlSuffix",
159
+ "populates": "Ad.finalUrlSuffix",
160
+ "filterable": true
161
+ },
162
+ {
163
+ "field": "CreativeFinalUrls",
164
+ "populates": "Ad.finalUrls",
165
+ "filterable": true
166
+ },
167
+ {
168
+ "field": "CreativeTrackingUrlTemplate",
169
+ "populates": "Ad.trackingUrlTemplate",
170
+ "filterable": true
171
+ },
172
+ {
173
+ "field": "CreativeUrlCustomParameters",
174
+ "populates": "Ad.urlCustomParameters",
175
+ "filterable": true
176
+ },
177
+ {
178
+ "field": "Description",
179
+ "populates": "ExpandedDynamicSearchAd.description",
180
+ "filterable": true
181
+ },
182
+ {
183
+ "field": "Description",
184
+ "populates": "ExpandedTextAd.description",
185
+ "filterable": true
186
+ },
187
+ {
188
+ "field": "Description",
189
+ "populates": "ResponsiveDisplayAd.description",
190
+ "filterable": true
191
+ },
192
+ {
193
+ "field": "Description1",
194
+ "populates": "TextAd.description1",
195
+ "filterable": true
196
+ },
197
+ {
198
+ "field": "Description1",
199
+ "populates": "DynamicSearchAd.description1",
200
+ "filterable": true
201
+ },
202
+ {
203
+ "field": "Description2",
204
+ "populates": "TextAd.description2",
205
+ "filterable": true
206
+ },
207
+ {
208
+ "field": "Description2",
209
+ "populates": "DynamicSearchAd.description2",
210
+ "filterable": true
211
+ },
212
+ {
213
+ "field": "DevicePreference",
214
+ "populates": "Ad.devicePreference",
215
+ "filterable": true
216
+ },
217
+ {
218
+ "field": "Dimensions",
219
+ "populates": "Media.dimensions",
220
+ "filterable": false
221
+ },
222
+ {
223
+ "field": "DisplayUploadAdGmailTeaserBusinessName",
224
+ "populates": "GmailTeaser.businessName",
225
+ "filterable": true
226
+ },
227
+ {
228
+ "field": "DisplayUploadAdGmailTeaserDescription",
229
+ "populates": "GmailTeaser.description",
230
+ "filterable": true
231
+ },
232
+ {
233
+ "field": "DisplayUploadAdGmailTeaserHeadline",
234
+ "populates": "GmailTeaser.headline",
235
+ "filterable": true
236
+ },
237
+ {
238
+ "field": "DisplayUploadAdGmailTeaserLogoImage",
239
+ "populates": "GmailTeaser.logoImage",
240
+ "filterable": false
241
+ },
242
+ {
243
+ "field": "DisplayUrl",
244
+ "populates": "Ad.displayUrl",
245
+ "filterable": true
246
+ },
247
+ {
248
+ "field": "ExpandedDynamicSearchCreativeDescription2",
249
+ "populates": "ExpandedDynamicSearchAd.description2",
250
+ "filterable": true
251
+ },
252
+ {
253
+ "field": "ExpandedTextAdDescription2",
254
+ "populates": "ExpandedTextAd.description2",
255
+ "filterable": true
256
+ },
257
+ {
258
+ "field": "ExpandedTextAdHeadlinePart3",
259
+ "populates": "ExpandedTextAd.headlinePart3",
260
+ "filterable": true
261
+ },
262
+ {
263
+ "field": "ExpandingDirections",
264
+ "populates": "ThirdPartyRedirectAd.expandingDirections",
265
+ "filterable": false
266
+ },
267
+ {
268
+ "field": "FileSize",
269
+ "populates": "Media.fileSize",
270
+ "filterable": false
271
+ },
272
+ {
273
+ "field": "FormatSetting",
274
+ "populates": "ResponsiveDisplayAd.formatSetting",
275
+ "filterable": true
276
+ },
277
+ {
278
+ "field": "GmailHeaderImage",
279
+ "populates": "GmailAd.headerImage",
280
+ "filterable": false
281
+ },
282
+ {
283
+ "field": "GmailMarketingImage",
284
+ "populates": "GmailAd.marketingImage",
285
+ "filterable": false
286
+ },
287
+ {
288
+ "field": "GmailTeaserBusinessName",
289
+ "populates": "GmailTeaser.businessName",
290
+ "filterable": true
291
+ },
292
+ {
293
+ "field": "GmailTeaserDescription",
294
+ "populates": "GmailTeaser.description",
295
+ "filterable": true
296
+ },
297
+ {
298
+ "field": "GmailTeaserHeadline",
299
+ "populates": "GmailTeaser.headline",
300
+ "filterable": true
301
+ },
302
+ {
303
+ "field": "GmailTeaserLogoImage",
304
+ "populates": "GmailTeaser.logoImage",
305
+ "filterable": false
306
+ },
307
+ {
308
+ "field": "Headline",
309
+ "populates": "TextAd.headline",
310
+ "filterable": true
311
+ },
312
+ {
313
+ "field": "HeadlinePart1",
314
+ "populates": "ExpandedTextAd.headlinePart1",
315
+ "filterable": true
316
+ },
317
+ {
318
+ "field": "HeadlinePart2",
319
+ "populates": "ExpandedTextAd.headlinePart2",
320
+ "filterable": true
321
+ },
322
+ {
323
+ "field": "Height",
324
+ "populates": "Dimensions.height",
325
+ "filterable": false
326
+ },
327
+ {
328
+ "field": "Id",
329
+ "populates": "Ad.id",
330
+ "filterable": true
331
+ },
332
+ {
333
+ "field": "ImageCreativeName",
334
+ "populates": "ImageAd.name",
335
+ "filterable": true
336
+ },
337
+ {
338
+ "field": "IndustryStandardCommercialIdentifier",
339
+ "populates": "Video.industryStandardCommercialIdentifier",
340
+ "filterable": false
341
+ },
342
+ {
343
+ "field": "IsCookieTargeted",
344
+ "populates": "ThirdPartyRedirectAd.isCookieTargeted",
345
+ "filterable": false
346
+ },
347
+ {
348
+ "field": "IsTagged",
349
+ "populates": "ThirdPartyRedirectAd.isTagged",
350
+ "filterable": false
351
+ },
352
+ {
353
+ "field": "IsUserInterestTargeted",
354
+ "populates": "ThirdPartyRedirectAd.isUserInterestTargeted",
355
+ "filterable": false
356
+ },
357
+ {
358
+ "field": "Labels",
359
+ "populates": "AdGroupAd.labels",
360
+ "filterable": true
361
+ },
362
+ {
363
+ "field": "LandscapeLogoImage",
364
+ "populates": "DynamicSettings.landscapeLogoImage",
365
+ "filterable": false
366
+ },
367
+ {
368
+ "field": "LogoImage",
369
+ "populates": "ResponsiveDisplayAd.logoImage",
370
+ "filterable": false
371
+ },
372
+ {
373
+ "field": "LongHeadline",
374
+ "populates": "ResponsiveDisplayAd.longHeadline",
375
+ "filterable": true
376
+ },
377
+ {
378
+ "field": "MainColor",
379
+ "populates": "ResponsiveDisplayAd.mainColor",
380
+ "filterable": true
381
+ },
382
+ {
383
+ "field": "MarketingImage",
384
+ "populates": "ResponsiveDisplayAd.marketingImage",
385
+ "filterable": false
386
+ },
387
+ {
388
+ "field": "MarketingImageCallToActionText",
389
+ "populates": "DisplayCallToAction.text",
390
+ "filterable": true
391
+ },
392
+ {
393
+ "field": "MarketingImageCallToActionTextColor",
394
+ "populates": "DisplayCallToAction.textColor",
395
+ "filterable": true
396
+ },
397
+ {
398
+ "field": "MarketingImageDescription",
399
+ "populates": "GmailAd.marketingImageDescription",
400
+ "filterable": true
401
+ },
402
+ {
403
+ "field": "MarketingImageHeadline",
404
+ "populates": "GmailAd.marketingImageHeadline",
405
+ "filterable": true
406
+ },
407
+ {
408
+ "field": "MediaId",
409
+ "populates": "Media.mediaId",
410
+ "filterable": false
411
+ },
412
+ {
413
+ "field": "MimeType",
414
+ "populates": "Media.mimeType",
415
+ "filterable": false
416
+ },
417
+ {
418
+ "field": "MultiAssetResponsiveDisplayAdAccentColor",
419
+ "populates": "MultiAssetResponsiveDisplayAd.accentColor",
420
+ "filterable": true
421
+ },
422
+ {
423
+ "field": "MultiAssetResponsiveDisplayAdAllowFlexibleColor",
424
+ "populates": "MultiAssetResponsiveDisplayAd.allowFlexibleColor",
425
+ "filterable": true
426
+ },
427
+ {
428
+ "field": "MultiAssetResponsiveDisplayAdBusinessName",
429
+ "populates": "MultiAssetResponsiveDisplayAd.businessName",
430
+ "filterable": true
431
+ },
432
+ {
433
+ "field": "MultiAssetResponsiveDisplayAdCallToActionText",
434
+ "populates": "MultiAssetResponsiveDisplayAd.callToActionText",
435
+ "filterable": true
436
+ },
437
+ {
438
+ "field": "MultiAssetResponsiveDisplayAdDescriptions",
439
+ "populates": "MultiAssetResponsiveDisplayAd.descriptions",
440
+ "filterable": false
441
+ },
442
+ {
443
+ "field": "MultiAssetResponsiveDisplayAdDynamicSettingsPricePrefix",
444
+ "populates": "MultiAssetResponsiveDisplayAd.dynamicSettingsPricePrefix",
445
+ "filterable": true
446
+ },
447
+ {
448
+ "field": "MultiAssetResponsiveDisplayAdDynamicSettingsPromoText",
449
+ "populates": "MultiAssetResponsiveDisplayAd.dynamicSettingsPromoText",
450
+ "filterable": true
451
+ },
452
+ {
453
+ "field": "MultiAssetResponsiveDisplayAdFormatSetting",
454
+ "populates": "MultiAssetResponsiveDisplayAd.formatSetting",
455
+ "filterable": true
456
+ },
457
+ {
458
+ "field": "MultiAssetResponsiveDisplayAdHeadlines",
459
+ "populates": "MultiAssetResponsiveDisplayAd.headlines",
460
+ "filterable": false
461
+ },
462
+ {
463
+ "field": "MultiAssetResponsiveDisplayAdLandscapeLogoImages",
464
+ "populates": "MultiAssetResponsiveDisplayAd.landscapeLogoImages",
465
+ "filterable": false
466
+ },
467
+ {
468
+ "field": "MultiAssetResponsiveDisplayAdLogoImages",
469
+ "populates": "MultiAssetResponsiveDisplayAd.logoImages",
470
+ "filterable": false
471
+ },
472
+ {
473
+ "field": "MultiAssetResponsiveDisplayAdLongHeadline",
474
+ "populates": "MultiAssetResponsiveDisplayAd.longHeadline",
475
+ "filterable": false
476
+ },
477
+ {
478
+ "field": "MultiAssetResponsiveDisplayAdMainColor",
479
+ "populates": "MultiAssetResponsiveDisplayAd.mainColor",
480
+ "filterable": true
481
+ },
482
+ {
483
+ "field": "MultiAssetResponsiveDisplayAdMarketingImages",
484
+ "populates": "MultiAssetResponsiveDisplayAd.marketingImages",
485
+ "filterable": false
486
+ },
487
+ {
488
+ "field": "MultiAssetResponsiveDisplayAdSquareMarketingImages",
489
+ "populates": "MultiAssetResponsiveDisplayAd.squareMarketingImages",
490
+ "filterable": false
491
+ },
492
+ {
493
+ "field": "MultiAssetResponsiveDisplayAdYouTubeVideos",
494
+ "populates": "MultiAssetResponsiveDisplayAd.youTubeVideos",
495
+ "filterable": false
496
+ },
497
+ {
498
+ "field": "Path1",
499
+ "populates": "ExpandedTextAd.path1",
500
+ "filterable": true
501
+ },
502
+ {
503
+ "field": "Path2",
504
+ "populates": "ExpandedTextAd.path2",
505
+ "filterable": true
506
+ },
507
+ {
508
+ "field": "PolicySummary",
509
+ "populates": "AdGroupAd.policySummary",
510
+ "filterable": false
511
+ },
512
+ {
513
+ "field": "PricePrefix",
514
+ "populates": "DynamicSettings.pricePrefix",
515
+ "filterable": true
516
+ },
517
+ {
518
+ "field": "ProductImages",
519
+ "populates": "GmailAd.productImages",
520
+ "filterable": false
521
+ },
522
+ {
523
+ "field": "ProductVideoList",
524
+ "populates": "GmailAd.productVideoList",
525
+ "filterable": false
526
+ },
527
+ {
528
+ "field": "PromoText",
529
+ "populates": "DynamicSettings.promoText",
530
+ "filterable": true
531
+ },
532
+ {
533
+ "field": "ReadyToPlayOnTheWeb",
534
+ "populates": "Audio.readyToPlayOnTheWeb",
535
+ "filterable": false
536
+ },
537
+ {
538
+ "field": "ReadyToPlayOnTheWeb",
539
+ "populates": "Video.readyToPlayOnTheWeb",
540
+ "filterable": false
541
+ },
542
+ {
543
+ "field": "ReferenceId",
544
+ "populates": "Media.referenceId",
545
+ "filterable": false
546
+ },
547
+ {
548
+ "field": "ResponsiveSearchAdDescriptions",
549
+ "populates": "ResponsiveSearchAd.descriptions",
550
+ "filterable": false
551
+ },
552
+ {
553
+ "field": "ResponsiveSearchAdHeadlines",
554
+ "populates": "ResponsiveSearchAd.headlines",
555
+ "filterable": false
556
+ },
557
+ {
558
+ "field": "ResponsiveSearchAdPath1",
559
+ "populates": "ResponsiveSearchAd.path1",
560
+ "filterable": true
561
+ },
562
+ {
563
+ "field": "ResponsiveSearchAdPath2",
564
+ "populates": "ResponsiveSearchAd.path2",
565
+ "filterable": true
566
+ },
567
+ {
568
+ "field": "RichMediaAdCertifiedVendorFormatId",
569
+ "populates": "RichMediaAd.certifiedVendorFormatId",
570
+ "filterable": false
571
+ },
572
+ {
573
+ "field": "RichMediaAdDuration",
574
+ "populates": "RichMediaAd.adDuration",
575
+ "filterable": false
576
+ },
577
+ {
578
+ "field": "RichMediaAdImpressionBeaconUrl",
579
+ "populates": "RichMediaAd.impressionBeaconUrl",
580
+ "filterable": false
581
+ },
582
+ {
583
+ "field": "RichMediaAdName",
584
+ "populates": "RichMediaAd.name",
585
+ "filterable": false
586
+ },
587
+ {
588
+ "field": "RichMediaAdSnippet",
589
+ "populates": "RichMediaAd.snippet",
590
+ "filterable": false
591
+ },
592
+ {
593
+ "field": "RichMediaAdSourceUrl",
594
+ "populates": "RichMediaAd.sourceUrl",
595
+ "filterable": false
596
+ },
597
+ {
598
+ "field": "RichMediaAdType",
599
+ "populates": "RichMediaAd.richMediaAdType",
600
+ "filterable": false
601
+ },
602
+ {
603
+ "field": "ShortHeadline",
604
+ "populates": "ResponsiveDisplayAd.shortHeadline",
605
+ "filterable": true
606
+ },
607
+ {
608
+ "field": "SourceUrl",
609
+ "populates": "Media.sourceUrl",
610
+ "filterable": false
611
+ },
612
+ {
613
+ "field": "SquareMarketingImage",
614
+ "populates": "ResponsiveDisplayAd.squareMarketingImage",
615
+ "filterable": false
616
+ },
617
+ {
618
+ "field": "Status",
619
+ "populates": "AdGroupAd.status",
620
+ "filterable": true
621
+ },
622
+ {
623
+ "field": "SystemManagedEntitySource",
624
+ "populates": "Ad.systemManagedEntitySource",
625
+ "filterable": true
626
+ },
627
+ {
628
+ "field": "TemplateAdDuration",
629
+ "populates": "TemplateAd.duration",
630
+ "filterable": false
631
+ },
632
+ {
633
+ "field": "TemplateAdName",
634
+ "populates": "TemplateAd.name",
635
+ "filterable": false
636
+ },
637
+ {
638
+ "field": "TemplateAdUnionId",
639
+ "populates": "TemplateAd.adUnionId",
640
+ "filterable": false
641
+ },
642
+ {
643
+ "field": "TemplateElementFieldName",
644
+ "populates": "TemplateElementField.name",
645
+ "filterable": false
646
+ },
647
+ {
648
+ "field": "TemplateElementFieldText",
649
+ "populates": "TemplateElementField.fieldText",
650
+ "filterable": false
651
+ },
652
+ {
653
+ "field": "TemplateElementFieldType",
654
+ "populates": "TemplateElementField.type",
655
+ "filterable": false
656
+ },
657
+ {
658
+ "field": "TemplateId",
659
+ "populates": "TemplateAd.templateId",
660
+ "filterable": true
661
+ },
662
+ {
663
+ "field": "TemplateOriginAdId",
664
+ "populates": "TemplateAd.originAdId",
665
+ "filterable": false
666
+ },
667
+ {
668
+ "field": "UniqueName",
669
+ "populates": "TemplateElement.uniqueName",
670
+ "filterable": false
671
+ },
672
+ {
673
+ "field": "UniversalAppAdDescriptions",
674
+ "populates": "UniversalAppAd.descriptions",
675
+ "filterable": false
676
+ },
677
+ {
678
+ "field": "UniversalAppAdHeadlines",
679
+ "populates": "UniversalAppAd.headlines",
680
+ "filterable": false
681
+ },
682
+ {
683
+ "field": "UniversalAppAdHtml5MediaBundles",
684
+ "populates": "UniversalAppAd.html5MediaBundles",
685
+ "filterable": false
686
+ },
687
+ {
688
+ "field": "UniversalAppAdImages",
689
+ "populates": "UniversalAppAd.images",
690
+ "filterable": false
691
+ },
692
+ {
693
+ "field": "UniversalAppAdMandatoryAdText",
694
+ "populates": "UniversalAppAd.mandatoryAdText",
695
+ "filterable": false
696
+ },
697
+ {
698
+ "field": "UniversalAppAdYouTubeVideos",
699
+ "populates": "UniversalAppAd.videos",
700
+ "filterable": false
701
+ },
702
+ {
703
+ "field": "Url",
704
+ "populates": "Ad.url",
705
+ "filterable": true
706
+ },
707
+ {
708
+ "field": "UrlData",
709
+ "populates": "Ad.urlData",
710
+ "filterable": false
711
+ },
712
+ {
713
+ "field": "Urls",
714
+ "populates": "Media.urls",
715
+ "filterable": false
716
+ },
717
+ {
718
+ "field": "VideoTypes",
719
+ "populates": "ThirdPartyRedirectAd.videoTypes",
720
+ "filterable": false
721
+ },
722
+ {
723
+ "field": "Width",
724
+ "populates": "Dimensions.width",
725
+ "filterable": false
726
+ },
727
+ {
728
+ "field": "YouTubeVideoIdString",
729
+ "populates": "Video.youTubeVideoIdString",
730
+ "filterable": false
731
+ }
732
+ ]
733
+ },
734
+ "ad_group_bid_modifiers": {
735
+ "get": [
736
+ {
737
+ "field": "AdGroupId",
738
+ "populates": "AdGroupBidModifier.adGroupId",
739
+ "filterable": true
740
+ },
741
+ {
742
+ "field": "BaseAdGroupId",
743
+ "populates": "AdGroupBidModifier.baseAdGroupId",
744
+ "filterable": true
745
+ },
746
+ {
747
+ "field": "BidModifier",
748
+ "populates": "AdGroupBidModifier.bidModifier",
749
+ "filterable": true
750
+ },
751
+ {
752
+ "field": "BidModifierSource",
753
+ "populates": "AdGroupBidModifier.bidModifierSource",
754
+ "filterable": true
755
+ },
756
+ {
757
+ "field": "CampaignId",
758
+ "populates": "AdGroupBidModifier.campaignId",
759
+ "filterable": true
760
+ },
761
+ {
762
+ "field": "CriteriaType",
763
+ "populates": "Criterion.type",
764
+ "filterable": true
765
+ },
766
+ {
767
+ "field": "Id",
768
+ "populates": "Criterion.id",
769
+ "filterable": true
770
+ },
771
+ {
772
+ "field": "PlatformName",
773
+ "populates": "Platform.platformName",
774
+ "filterable": true
775
+ }
776
+ ]
777
+ },
778
+ "ad_group_criteria": {
779
+ "get": [
780
+ {
781
+ "field": "AdGroupId",
782
+ "populates": "AdGroupCriterion.adGroupId",
783
+ "filterable": true
784
+ },
785
+ {
786
+ "field": "AgeRangeType",
787
+ "populates": "AgeRange.ageRangeType",
788
+ "filterable": false
789
+ },
790
+ {
791
+ "field": "AppId",
792
+ "populates": "MobileApplication.appId",
793
+ "filterable": true
794
+ },
795
+ {
796
+ "field": "AppPaymentModelType",
797
+ "populates": "AppPaymentModel.appPaymentModelType",
798
+ "filterable": false
799
+ },
800
+ {
801
+ "field": "ApprovalStatus",
802
+ "populates": "BiddableAdGroupCriterion.approvalStatus",
803
+ "filterable": true
804
+ },
805
+ {
806
+ "field": "BaseAdGroupId",
807
+ "populates": "AdGroupCriterion.baseAdGroupId",
808
+ "filterable": true
809
+ },
810
+ {
811
+ "field": "BaseCampaignId",
812
+ "populates": "AdGroupCriterion.baseCampaignId",
813
+ "filterable": true
814
+ },
815
+ {
816
+ "field": "BidModifier",
817
+ "populates": "BiddableAdGroupCriterion.bidModifier",
818
+ "filterable": true
819
+ },
820
+ {
821
+ "field": "BiddingStrategyId",
822
+ "populates": "BiddingStrategyConfiguration.biddingStrategyId",
823
+ "filterable": true
824
+ },
825
+ {
826
+ "field": "BiddingStrategyName",
827
+ "populates": "BiddingStrategyConfiguration.biddingStrategyName",
828
+ "filterable": true
829
+ },
830
+ {
831
+ "field": "BiddingStrategySource",
832
+ "populates": "BiddingStrategyConfiguration.biddingStrategySource",
833
+ "filterable": true
834
+ },
835
+ {
836
+ "field": "BiddingStrategyType",
837
+ "populates": "BiddingStrategyConfiguration.biddingStrategyType",
838
+ "filterable": true
839
+ },
840
+ {
841
+ "field": "CaseValue",
842
+ "populates": "ProductPartition.caseValue",
843
+ "filterable": false
844
+ },
845
+ {
846
+ "field": "ChannelId",
847
+ "populates": "YouTubeChannel.channelId",
848
+ "filterable": false
849
+ },
850
+ {
851
+ "field": "ChannelName",
852
+ "populates": "YouTubeChannel.channelName",
853
+ "filterable": false
854
+ },
855
+ {
856
+ "field": "CpcBid",
857
+ "populates": "CpcBid.bid",
858
+ "filterable": true
859
+ },
860
+ {
861
+ "field": "CpcBidSource",
862
+ "populates": "CpcBid.cpcBidSource",
863
+ "filterable": true
864
+ },
865
+ {
866
+ "field": "CpmBid",
867
+ "populates": "CpmBid.bid",
868
+ "filterable": true
869
+ },
870
+ {
871
+ "field": "CpmBidSource",
872
+ "populates": "CpmBid.cpmBidSource",
873
+ "filterable": true
874
+ },
875
+ {
876
+ "field": "CriteriaCoverage",
877
+ "populates": "Webpage.criteriaCoverage",
878
+ "filterable": false
879
+ },
880
+ {
881
+ "field": "CriteriaSamples",
882
+ "populates": "Webpage.criteriaSamples",
883
+ "filterable": false
884
+ },
885
+ {
886
+ "field": "CriteriaType",
887
+ "populates": "Criterion.type",
888
+ "filterable": true
889
+ },
890
+ {
891
+ "field": "CriterionUse",
892
+ "populates": "AdGroupCriterion.criterionUse",
893
+ "filterable": true
894
+ },
895
+ {
896
+ "field": "CustomAffinityId",
897
+ "populates": "CriterionCustomAffinity.customAffinityId",
898
+ "filterable": true
899
+ },
900
+ {
901
+ "field": "CustomIntentId",
902
+ "populates": "CriterionCustomIntent.customIntentId",
903
+ "filterable": true
904
+ },
905
+ {
906
+ "field": "DisapprovalReasons",
907
+ "populates": "BiddableAdGroupCriterion.disapprovalReasons",
908
+ "filterable": false
909
+ },
910
+ {
911
+ "field": "DisplayName",
912
+ "populates": "MobileApplication.displayName",
913
+ "filterable": true
914
+ },
915
+ {
916
+ "field": "EnhancedCpcEnabled",
917
+ "populates": "ManualCpcBiddingScheme.enhancedCpcEnabled",
918
+ "filterable": true
919
+ },
920
+ {
921
+ "field": "FinalAppUrls",
922
+ "populates": "BiddableAdGroupCriterion.finalAppUrls",
923
+ "filterable": true
924
+ },
925
+ {
926
+ "field": "FinalMobileUrls",
927
+ "populates": "BiddableAdGroupCriterion.finalMobileUrls",
928
+ "filterable": true
929
+ },
930
+ {
931
+ "field": "FinalUrlSuffix",
932
+ "populates": "BiddableAdGroupCriterion.finalUrlSuffix",
933
+ "filterable": true
934
+ },
935
+ {
936
+ "field": "FinalUrls",
937
+ "populates": "BiddableAdGroupCriterion.finalUrls",
938
+ "filterable": true
939
+ },
940
+ {
941
+ "field": "FirstPageCpc",
942
+ "populates": "BiddableAdGroupCriterion.firstPageCpc",
943
+ "filterable": true
944
+ },
945
+ {
946
+ "field": "FirstPositionCpc",
947
+ "populates": "BiddableAdGroupCriterion.firstPositionCpc",
948
+ "filterable": true
949
+ },
950
+ {
951
+ "field": "GenderType",
952
+ "populates": "Gender.genderType",
953
+ "filterable": false
954
+ },
955
+ {
956
+ "field": "Id",
957
+ "populates": "Criterion.id",
958
+ "filterable": true
959
+ },
960
+ {
961
+ "field": "IncomeRangeType",
962
+ "populates": "IncomeRange.incomeRangeType",
963
+ "filterable": false
964
+ },
965
+ {
966
+ "field": "KeywordMatchType",
967
+ "populates": "Keyword.matchType",
968
+ "filterable": true
969
+ },
970
+ {
971
+ "field": "KeywordText",
972
+ "populates": "Keyword.text",
973
+ "filterable": true
974
+ },
975
+ {
976
+ "field": "Labels",
977
+ "populates": "AdGroupCriterion.labels",
978
+ "filterable": true
979
+ },
980
+ {
981
+ "field": "MobileAppCategoryId",
982
+ "populates": "MobileAppCategory.mobileAppCategoryId",
983
+ "filterable": false
984
+ },
985
+ {
986
+ "field": "Parameter",
987
+ "populates": "Webpage.parameter",
988
+ "filterable": false
989
+ },
990
+ {
991
+ "field": "ParentCriterionId",
992
+ "populates": "ProductPartition.parentCriterionId",
993
+ "filterable": false
994
+ },
995
+ {
996
+ "field": "ParentType",
997
+ "populates": "Parent.parentType",
998
+ "filterable": false
999
+ },
1000
+ {
1001
+ "field": "PartitionType",
1002
+ "populates": "ProductPartition.partitionType",
1003
+ "filterable": false
1004
+ },
1005
+ {
1006
+ "field": "Path",
1007
+ "populates": "Vertical.path",
1008
+ "filterable": false
1009
+ },
1010
+ {
1011
+ "field": "PlacementUrl",
1012
+ "populates": "Placement.url",
1013
+ "filterable": true
1014
+ },
1015
+ {
1016
+ "field": "QualityScore",
1017
+ "populates": "QualityInfo.qualityScore",
1018
+ "filterable": true
1019
+ },
1020
+ {
1021
+ "field": "Status",
1022
+ "populates": "BiddableAdGroupCriterion.userStatus",
1023
+ "filterable": true
1024
+ },
1025
+ {
1026
+ "field": "SystemServingStatus",
1027
+ "populates": "BiddableAdGroupCriterion.systemServingStatus",
1028
+ "filterable": true
1029
+ },
1030
+ {
1031
+ "field": "TopOfPageCpc",
1032
+ "populates": "BiddableAdGroupCriterion.topOfPageCpc",
1033
+ "filterable": true
1034
+ },
1035
+ {
1036
+ "field": "TrackingUrlTemplate",
1037
+ "populates": "BiddableAdGroupCriterion.trackingUrlTemplate",
1038
+ "filterable": true
1039
+ },
1040
+ {
1041
+ "field": "UrlCustomParameters",
1042
+ "populates": "BiddableAdGroupCriterion.urlCustomParameters",
1043
+ "filterable": true
1044
+ },
1045
+ {
1046
+ "field": "UserInterestId",
1047
+ "populates": "CriterionUserInterest.userInterestId",
1048
+ "filterable": false
1049
+ },
1050
+ {
1051
+ "field": "UserInterestName",
1052
+ "populates": "CriterionUserInterest.userInterestName",
1053
+ "filterable": false
1054
+ },
1055
+ {
1056
+ "field": "UserInterestParentId",
1057
+ "populates": "CriterionUserInterest.userInterestParentId",
1058
+ "filterable": false
1059
+ },
1060
+ {
1061
+ "field": "UserListEligibleForDisplay",
1062
+ "populates": "CriterionUserList.userListEligibleForDisplay",
1063
+ "filterable": true
1064
+ },
1065
+ {
1066
+ "field": "UserListEligibleForSearch",
1067
+ "populates": "CriterionUserList.userListEligibleForSearch",
1068
+ "filterable": true
1069
+ },
1070
+ {
1071
+ "field": "UserListId",
1072
+ "populates": "CriterionUserList.userListId",
1073
+ "filterable": false
1074
+ },
1075
+ {
1076
+ "field": "UserListMembershipStatus",
1077
+ "populates": "CriterionUserList.userListMembershipStatus",
1078
+ "filterable": true
1079
+ },
1080
+ {
1081
+ "field": "UserListName",
1082
+ "populates": "CriterionUserList.userListName",
1083
+ "filterable": false
1084
+ },
1085
+ {
1086
+ "field": "VerticalId",
1087
+ "populates": "Vertical.verticalId",
1088
+ "filterable": false
1089
+ },
1090
+ {
1091
+ "field": "VerticalParentId",
1092
+ "populates": "Vertical.verticalParentId",
1093
+ "filterable": false
1094
+ },
1095
+ {
1096
+ "field": "VideoId",
1097
+ "populates": "YouTubeVideo.videoId",
1098
+ "filterable": false
1099
+ },
1100
+ {
1101
+ "field": "VideoName",
1102
+ "populates": "YouTubeVideo.videoName",
1103
+ "filterable": false
1104
+ }
1105
+ ]
1106
+ },
1107
+ "ad_group_extension_settings": {
1108
+ "get": [
1109
+ {
1110
+ "field": "AdGroupId",
1111
+ "populates": "AdGroupExtensionSetting.adGroupId",
1112
+ "filterable": true
1113
+ },
1114
+ {
1115
+ "field": "ExtensionType",
1116
+ "populates": "AdGroupExtensionSetting.extensionType",
1117
+ "filterable": true
1118
+ },
1119
+ {
1120
+ "field": "Extensions",
1121
+ "populates": "ExtensionSetting.extensions",
1122
+ "filterable": false
1123
+ },
1124
+ {
1125
+ "field": "PlatformRestrictions",
1126
+ "populates": "ExtensionSetting.platformRestrictions",
1127
+ "filterable": false
1128
+ }
1129
+ ]
1130
+ },
1131
+ "ad_group_feeds": {
1132
+ "get": [
1133
+ {
1134
+ "field": "AdGroupId",
1135
+ "populates": "AdGroupFeed.adGroupId",
1136
+ "filterable": true
1137
+ },
1138
+ {
1139
+ "field": "BaseAdGroupId",
1140
+ "populates": "AdGroupFeed.baseAdGroupId",
1141
+ "filterable": true
1142
+ },
1143
+ {
1144
+ "field": "BaseCampaignId",
1145
+ "populates": "AdGroupFeed.baseCampaignId",
1146
+ "filterable": true
1147
+ },
1148
+ {
1149
+ "field": "FeedId",
1150
+ "populates": "AdGroupFeed.feedId",
1151
+ "filterable": true
1152
+ },
1153
+ {
1154
+ "field": "MatchingFunction",
1155
+ "populates": "AdGroupFeed.matchingFunction",
1156
+ "filterable": false
1157
+ },
1158
+ {
1159
+ "field": "PlaceholderTypes",
1160
+ "populates": "AdGroupFeed.placeholderTypes",
1161
+ "filterable": true
1162
+ },
1163
+ {
1164
+ "field": "Status",
1165
+ "populates": "AdGroupFeed.status",
1166
+ "filterable": true
1167
+ }
1168
+ ]
1169
+ },
1170
+ "ad_groups": {
1171
+ "get": [
1172
+ {
1173
+ "field": "AdGroupType",
1174
+ "populates": "AdGroup.adGroupType",
1175
+ "filterable": true
1176
+ },
1177
+ {
1178
+ "field": "AdRotationMode",
1179
+ "populates": "AdGroupAdRotationMode.adRotationMode",
1180
+ "filterable": true
1181
+ },
1182
+ {
1183
+ "field": "BaseAdGroupId",
1184
+ "populates": "AdGroup.baseAdGroupId",
1185
+ "filterable": false
1186
+ },
1187
+ {
1188
+ "field": "BaseCampaignId",
1189
+ "populates": "AdGroup.baseCampaignId",
1190
+ "filterable": false
1191
+ },
1192
+ {
1193
+ "field": "BiddingStrategyId",
1194
+ "populates": "BiddingStrategyConfiguration.biddingStrategyId",
1195
+ "filterable": true
1196
+ },
1197
+ {
1198
+ "field": "BiddingStrategyName",
1199
+ "populates": "BiddingStrategyConfiguration.biddingStrategyName",
1200
+ "filterable": true
1201
+ },
1202
+ {
1203
+ "field": "BiddingStrategySource",
1204
+ "populates": "BiddingStrategyConfiguration.biddingStrategySource",
1205
+ "filterable": true
1206
+ },
1207
+ {
1208
+ "field": "BiddingStrategyType",
1209
+ "populates": "BiddingStrategyConfiguration.biddingStrategyType",
1210
+ "filterable": true
1211
+ },
1212
+ {
1213
+ "field": "CampaignId",
1214
+ "populates": "AdGroup.campaignId",
1215
+ "filterable": true
1216
+ },
1217
+ {
1218
+ "field": "CampaignName",
1219
+ "populates": "AdGroup.campaignName",
1220
+ "filterable": true
1221
+ },
1222
+ {
1223
+ "field": "ContentBidCriterionTypeGroup",
1224
+ "populates": "AdGroup.contentBidCriterionTypeGroup",
1225
+ "filterable": true
1226
+ },
1227
+ {
1228
+ "field": "CpcBid",
1229
+ "populates": "CpcBid.bid",
1230
+ "filterable": true
1231
+ },
1232
+ {
1233
+ "field": "CpmBid",
1234
+ "populates": "CpmBid.bid",
1235
+ "filterable": true
1236
+ },
1237
+ {
1238
+ "field": "EnhancedCpcEnabled",
1239
+ "populates": "ManualCpcBiddingScheme.enhancedCpcEnabled",
1240
+ "filterable": true
1241
+ },
1242
+ {
1243
+ "field": "FinalUrlSuffix",
1244
+ "populates": "AdGroup.finalUrlSuffix",
1245
+ "filterable": true
1246
+ },
1247
+ {
1248
+ "field": "Id",
1249
+ "populates": "AdGroup.id",
1250
+ "filterable": true
1251
+ },
1252
+ {
1253
+ "field": "Labels",
1254
+ "populates": "AdGroup.labels",
1255
+ "filterable": true
1256
+ },
1257
+ {
1258
+ "field": "Name",
1259
+ "populates": "AdGroup.name",
1260
+ "filterable": true
1261
+ },
1262
+ {
1263
+ "field": "Settings",
1264
+ "populates": "AdGroup.settings",
1265
+ "filterable": false
1266
+ },
1267
+ {
1268
+ "field": "Status",
1269
+ "populates": "AdGroup.status",
1270
+ "filterable": true
1271
+ },
1272
+ {
1273
+ "field": "TargetCpa",
1274
+ "populates": "TargetCpaBiddingScheme.targetCpa",
1275
+ "filterable": true
1276
+ },
1277
+ {
1278
+ "field": "TargetCpaBid",
1279
+ "populates": "CpaBid.bid",
1280
+ "filterable": true
1281
+ },
1282
+ {
1283
+ "field": "TargetCpaBidSource",
1284
+ "populates": "CpaBid.bidSource",
1285
+ "filterable": true
1286
+ },
1287
+ {
1288
+ "field": "TargetRoasOverride",
1289
+ "populates": "BiddingStrategyConfiguration.targetRoasOverride",
1290
+ "filterable": true
1291
+ },
1292
+ {
1293
+ "field": "TrackingUrlTemplate",
1294
+ "populates": "AdGroup.trackingUrlTemplate",
1295
+ "filterable": true
1296
+ },
1297
+ {
1298
+ "field": "UrlCustomParameters",
1299
+ "populates": "AdGroup.urlCustomParameters",
1300
+ "filterable": false
1301
+ }
1302
+ ]
1303
+ },
1304
+ "ad_params": {
1305
+ "get": [
1306
+ {
1307
+ "field": "AdGroupId",
1308
+ "populates": "AdParam.adGroupId",
1309
+ "filterable": true
1310
+ },
1311
+ {
1312
+ "field": "CriterionId",
1313
+ "populates": "AdParam.criterionId",
1314
+ "filterable": true
1315
+ },
1316
+ {
1317
+ "field": "InsertionText",
1318
+ "populates": "AdParam.insertionText",
1319
+ "filterable": false
1320
+ },
1321
+ {
1322
+ "field": "ParamIndex",
1323
+ "populates": "AdParam.paramIndex",
1324
+ "filterable": false
1325
+ }
1326
+ ]
1327
+ },
1328
+ "ads": {
1329
+ "get": [
1330
+ {
1331
+ "field": "AccentColor",
1332
+ "populates": "ResponsiveDisplayAd.accentColor",
1333
+ "filterable": true
1334
+ },
1335
+ {
1336
+ "field": "AdType",
1337
+ "populates": "Ad.type",
1338
+ "filterable": true
1339
+ },
1340
+ {
1341
+ "field": "AllowFlexibleColor",
1342
+ "populates": "ResponsiveDisplayAd.allowFlexibleColor",
1343
+ "filterable": true
1344
+ },
1345
+ {
1346
+ "field": "BusinessName",
1347
+ "populates": "ResponsiveDisplayAd.businessName",
1348
+ "filterable": true
1349
+ },
1350
+ {
1351
+ "field": "CallToActionText",
1352
+ "populates": "ResponsiveDisplayAd.callToActionText",
1353
+ "filterable": true
1354
+ },
1355
+ {
1356
+ "field": "CreativeFinalAppUrls",
1357
+ "populates": "Ad.finalAppUrls",
1358
+ "filterable": true
1359
+ },
1360
+ {
1361
+ "field": "CreativeFinalMobileUrls",
1362
+ "populates": "Ad.finalMobileUrls",
1363
+ "filterable": true
1364
+ },
1365
+ {
1366
+ "field": "CreativeFinalUrlSuffix",
1367
+ "populates": "Ad.finalUrlSuffix",
1368
+ "filterable": true
1369
+ },
1370
+ {
1371
+ "field": "CreativeFinalUrls",
1372
+ "populates": "Ad.finalUrls",
1373
+ "filterable": true
1374
+ },
1375
+ {
1376
+ "field": "CreativeTrackingUrlTemplate",
1377
+ "populates": "Ad.trackingUrlTemplate",
1378
+ "filterable": true
1379
+ },
1380
+ {
1381
+ "field": "CreativeUrlCustomParameters",
1382
+ "populates": "Ad.urlCustomParameters",
1383
+ "filterable": true
1384
+ },
1385
+ {
1386
+ "field": "Description",
1387
+ "populates": "ExpandedDynamicSearchAd.description",
1388
+ "filterable": true
1389
+ },
1390
+ {
1391
+ "field": "Description",
1392
+ "populates": "ExpandedTextAd.description",
1393
+ "filterable": true
1394
+ },
1395
+ {
1396
+ "field": "Description",
1397
+ "populates": "ResponsiveDisplayAd.description",
1398
+ "filterable": true
1399
+ },
1400
+ {
1401
+ "field": "Description1",
1402
+ "populates": "DynamicSearchAd.description1",
1403
+ "filterable": true
1404
+ },
1405
+ {
1406
+ "field": "Description2",
1407
+ "populates": "DynamicSearchAd.description2",
1408
+ "filterable": true
1409
+ },
1410
+ {
1411
+ "field": "DisplayUrl",
1412
+ "populates": "Ad.displayUrl",
1413
+ "filterable": true
1414
+ },
1415
+ {
1416
+ "field": "DurationMillis",
1417
+ "populates": "Audio.durationMillis",
1418
+ "filterable": true
1419
+ },
1420
+ {
1421
+ "field": "ExpandedDynamicSearchCreativeDescription2",
1422
+ "populates": "ExpandedDynamicSearchAd.description2",
1423
+ "filterable": true
1424
+ },
1425
+ {
1426
+ "field": "ExpandedTextAdDescription2",
1427
+ "populates": "ExpandedTextAd.description2",
1428
+ "filterable": true
1429
+ },
1430
+ {
1431
+ "field": "ExpandedTextAdHeadlinePart3",
1432
+ "populates": "ExpandedTextAd.headlinePart3",
1433
+ "filterable": true
1434
+ },
1435
+ {
1436
+ "field": "FormatSetting",
1437
+ "populates": "ResponsiveDisplayAd.formatSetting",
1438
+ "filterable": true
1439
+ },
1440
+ {
1441
+ "field": "HeadlinePart1",
1442
+ "populates": "ExpandedTextAd.headlinePart1",
1443
+ "filterable": true
1444
+ },
1445
+ {
1446
+ "field": "HeadlinePart2",
1447
+ "populates": "ExpandedTextAd.headlinePart2",
1448
+ "filterable": true
1449
+ },
1450
+ {
1451
+ "field": "Id",
1452
+ "populates": "Ad.id",
1453
+ "filterable": true
1454
+ },
1455
+ {
1456
+ "field": "LongHeadline",
1457
+ "populates": "ResponsiveDisplayAd.longHeadline",
1458
+ "filterable": true
1459
+ },
1460
+ {
1461
+ "field": "MainColor",
1462
+ "populates": "ResponsiveDisplayAd.mainColor",
1463
+ "filterable": true
1464
+ },
1465
+ {
1466
+ "field": "MultiAssetResponsiveDisplayAdAccentColor",
1467
+ "populates": "MultiAssetResponsiveDisplayAd.accentColor",
1468
+ "filterable": true
1469
+ },
1470
+ {
1471
+ "field": "MultiAssetResponsiveDisplayAdAllowFlexibleColor",
1472
+ "populates": "MultiAssetResponsiveDisplayAd.allowFlexibleColor",
1473
+ "filterable": true
1474
+ },
1475
+ {
1476
+ "field": "MultiAssetResponsiveDisplayAdBusinessName",
1477
+ "populates": "MultiAssetResponsiveDisplayAd.businessName",
1478
+ "filterable": true
1479
+ },
1480
+ {
1481
+ "field": "MultiAssetResponsiveDisplayAdCallToActionText",
1482
+ "populates": "MultiAssetResponsiveDisplayAd.callToActionText",
1483
+ "filterable": true
1484
+ },
1485
+ {
1486
+ "field": "MultiAssetResponsiveDisplayAdDescriptions",
1487
+ "populates": "MultiAssetResponsiveDisplayAd.descriptions",
1488
+ "filterable": false
1489
+ },
1490
+ {
1491
+ "field": "MultiAssetResponsiveDisplayAdDynamicSettingsPricePrefix",
1492
+ "populates": "MultiAssetResponsiveDisplayAd.dynamicSettingsPricePrefix",
1493
+ "filterable": true
1494
+ },
1495
+ {
1496
+ "field": "MultiAssetResponsiveDisplayAdDynamicSettingsPromoText",
1497
+ "populates": "MultiAssetResponsiveDisplayAd.dynamicSettingsPromoText",
1498
+ "filterable": true
1499
+ },
1500
+ {
1501
+ "field": "MultiAssetResponsiveDisplayAdFormatSetting",
1502
+ "populates": "MultiAssetResponsiveDisplayAd.formatSetting",
1503
+ "filterable": true
1504
+ },
1505
+ {
1506
+ "field": "MultiAssetResponsiveDisplayAdHeadlines",
1507
+ "populates": "MultiAssetResponsiveDisplayAd.headlines",
1508
+ "filterable": false
1509
+ },
1510
+ {
1511
+ "field": "MultiAssetResponsiveDisplayAdLandscapeLogoImages",
1512
+ "populates": "MultiAssetResponsiveDisplayAd.landscapeLogoImages",
1513
+ "filterable": false
1514
+ },
1515
+ {
1516
+ "field": "MultiAssetResponsiveDisplayAdLogoImages",
1517
+ "populates": "MultiAssetResponsiveDisplayAd.logoImages",
1518
+ "filterable": false
1519
+ },
1520
+ {
1521
+ "field": "MultiAssetResponsiveDisplayAdLongHeadline",
1522
+ "populates": "MultiAssetResponsiveDisplayAd.longHeadline",
1523
+ "filterable": false
1524
+ },
1525
+ {
1526
+ "field": "MultiAssetResponsiveDisplayAdMainColor",
1527
+ "populates": "MultiAssetResponsiveDisplayAd.mainColor",
1528
+ "filterable": true
1529
+ },
1530
+ {
1531
+ "field": "MultiAssetResponsiveDisplayAdMarketingImages",
1532
+ "populates": "MultiAssetResponsiveDisplayAd.marketingImages",
1533
+ "filterable": false
1534
+ },
1535
+ {
1536
+ "field": "MultiAssetResponsiveDisplayAdSquareMarketingImages",
1537
+ "populates": "MultiAssetResponsiveDisplayAd.squareMarketingImages",
1538
+ "filterable": false
1539
+ },
1540
+ {
1541
+ "field": "MultiAssetResponsiveDisplayAdYouTubeVideos",
1542
+ "populates": "MultiAssetResponsiveDisplayAd.youTubeVideos",
1543
+ "filterable": false
1544
+ },
1545
+ {
1546
+ "field": "Name",
1547
+ "populates": "DeprecatedAd.name",
1548
+ "filterable": false
1549
+ },
1550
+ {
1551
+ "field": "Path1",
1552
+ "populates": "ExpandedTextAd.path1",
1553
+ "filterable": true
1554
+ },
1555
+ {
1556
+ "field": "Path2",
1557
+ "populates": "ExpandedTextAd.path2",
1558
+ "filterable": true
1559
+ },
1560
+ {
1561
+ "field": "ReadyToPlayOnTheWeb",
1562
+ "populates": "Audio.readyToPlayOnTheWeb",
1563
+ "filterable": false
1564
+ },
1565
+ {
1566
+ "field": "ResponsiveSearchAdDescriptions",
1567
+ "populates": "ResponsiveSearchAd.descriptions",
1568
+ "filterable": false
1569
+ },
1570
+ {
1571
+ "field": "ResponsiveSearchAdHeadlines",
1572
+ "populates": "ResponsiveSearchAd.headlines",
1573
+ "filterable": false
1574
+ },
1575
+ {
1576
+ "field": "ResponsiveSearchAdPath1",
1577
+ "populates": "ResponsiveSearchAd.path1",
1578
+ "filterable": true
1579
+ },
1580
+ {
1581
+ "field": "ResponsiveSearchAdPath2",
1582
+ "populates": "ResponsiveSearchAd.path2",
1583
+ "filterable": true
1584
+ },
1585
+ {
1586
+ "field": "ShortHeadline",
1587
+ "populates": "ResponsiveDisplayAd.shortHeadline",
1588
+ "filterable": true
1589
+ },
1590
+ {
1591
+ "field": "StreamingUrl",
1592
+ "populates": "Audio.streamingUrl",
1593
+ "filterable": false
1594
+ },
1595
+ {
1596
+ "field": "Type",
1597
+ "populates": "DeprecatedAd.deprecatedAdType",
1598
+ "filterable": false
1599
+ },
1600
+ {
1601
+ "field": "UniversalAppAdDescriptions",
1602
+ "populates": "UniversalAppAd.descriptions",
1603
+ "filterable": false
1604
+ },
1605
+ {
1606
+ "field": "UniversalAppAdHeadlines",
1607
+ "populates": "UniversalAppAd.headlines",
1608
+ "filterable": false
1609
+ },
1610
+ {
1611
+ "field": "UniversalAppAdHtml5MediaBundles",
1612
+ "populates": "UniversalAppAd.html5MediaBundles",
1613
+ "filterable": false
1614
+ },
1615
+ {
1616
+ "field": "UniversalAppAdImages",
1617
+ "populates": "UniversalAppAd.images",
1618
+ "filterable": false
1619
+ },
1620
+ {
1621
+ "field": "UniversalAppAdMandatoryAdText",
1622
+ "populates": "UniversalAppAd.mandatoryAdText",
1623
+ "filterable": false
1624
+ },
1625
+ {
1626
+ "field": "UniversalAppAdYouTubeVideos",
1627
+ "populates": "UniversalAppAd.videos",
1628
+ "filterable": false
1629
+ },
1630
+ {
1631
+ "field": "Url",
1632
+ "populates": "Ad.url",
1633
+ "filterable": true
1634
+ }
1635
+ ]
1636
+ },
1637
+ "adwords_user_lists": {
1638
+ "get": [
1639
+ {
1640
+ "field": "AccessReason",
1641
+ "populates": "UserList.accessReason",
1642
+ "filterable": true
1643
+ },
1644
+ {
1645
+ "field": "AccountUserListStatus",
1646
+ "populates": "UserList.accountUserListStatus",
1647
+ "filterable": true
1648
+ },
1649
+ {
1650
+ "field": "AppId",
1651
+ "populates": "CrmBasedUserList.appId",
1652
+ "filterable": false
1653
+ },
1654
+ {
1655
+ "field": "ClosingReason",
1656
+ "populates": "UserList.closingReason",
1657
+ "filterable": true
1658
+ },
1659
+ {
1660
+ "field": "ConversionTypes",
1661
+ "populates": "BasicUserList.conversionTypes",
1662
+ "filterable": false
1663
+ },
1664
+ {
1665
+ "field": "DataSourceType",
1666
+ "populates": "CrmBasedUserList.dataSourceType",
1667
+ "filterable": true
1668
+ },
1669
+ {
1670
+ "field": "DataUploadResult",
1671
+ "populates": "CrmBasedUserList.dataUploadResult",
1672
+ "filterable": false
1673
+ },
1674
+ {
1675
+ "field": "DateSpecificListEndDate",
1676
+ "populates": "DateSpecificRuleUserList.endDate",
1677
+ "filterable": false
1678
+ },
1679
+ {
1680
+ "field": "DateSpecificListRule",
1681
+ "populates": "DateSpecificRuleUserList.rule",
1682
+ "filterable": false
1683
+ },
1684
+ {
1685
+ "field": "DateSpecificListStartDate",
1686
+ "populates": "DateSpecificRuleUserList.startDate",
1687
+ "filterable": false
1688
+ },
1689
+ {
1690
+ "field": "Description",
1691
+ "populates": "UserList.description",
1692
+ "filterable": false
1693
+ },
1694
+ {
1695
+ "field": "ExpressionListRule",
1696
+ "populates": "ExpressionRuleUserList.rule",
1697
+ "filterable": false
1698
+ },
1699
+ {
1700
+ "field": "Id",
1701
+ "populates": "UserList.id",
1702
+ "filterable": true
1703
+ },
1704
+ {
1705
+ "field": "IntegrationCode",
1706
+ "populates": "UserList.integrationCode",
1707
+ "filterable": true
1708
+ },
1709
+ {
1710
+ "field": "IsEligibleForDisplay",
1711
+ "populates": "UserList.isEligibleForDisplay",
1712
+ "filterable": true
1713
+ },
1714
+ {
1715
+ "field": "IsEligibleForSearch",
1716
+ "populates": "UserList.isEligibleForSearch",
1717
+ "filterable": true
1718
+ },
1719
+ {
1720
+ "field": "IsReadOnly",
1721
+ "populates": "UserList.isReadOnly",
1722
+ "filterable": false
1723
+ },
1724
+ {
1725
+ "field": "ListType",
1726
+ "populates": "UserList.listType",
1727
+ "filterable": true
1728
+ },
1729
+ {
1730
+ "field": "MembershipLifeSpan",
1731
+ "populates": "UserList.membershipLifeSpan",
1732
+ "filterable": true
1733
+ },
1734
+ {
1735
+ "field": "Name",
1736
+ "populates": "UserList.name",
1737
+ "filterable": true
1738
+ },
1739
+ {
1740
+ "field": "PrepopulationStatus",
1741
+ "populates": "RuleBasedUserList.prepopulationStatus",
1742
+ "filterable": false
1743
+ },
1744
+ {
1745
+ "field": "Rules",
1746
+ "populates": "LogicalUserList.rules",
1747
+ "filterable": false
1748
+ },
1749
+ {
1750
+ "field": "SeedListSize",
1751
+ "populates": "SimilarUserList.seedListSize",
1752
+ "filterable": true
1753
+ },
1754
+ {
1755
+ "field": "SeedUserListDescription",
1756
+ "populates": "SimilarUserList.seedUserListDescription",
1757
+ "filterable": false
1758
+ },
1759
+ {
1760
+ "field": "SeedUserListId",
1761
+ "populates": "SimilarUserList.seedUserListId",
1762
+ "filterable": true
1763
+ },
1764
+ {
1765
+ "field": "SeedUserListName",
1766
+ "populates": "SimilarUserList.seedUserListName",
1767
+ "filterable": false
1768
+ },
1769
+ {
1770
+ "field": "SeedUserListStatus",
1771
+ "populates": "SimilarUserList.seedUserListStatus",
1772
+ "filterable": false
1773
+ },
1774
+ {
1775
+ "field": "Size",
1776
+ "populates": "UserList.size",
1777
+ "filterable": true
1778
+ },
1779
+ {
1780
+ "field": "SizeForSearch",
1781
+ "populates": "UserList.sizeForSearch",
1782
+ "filterable": true
1783
+ },
1784
+ {
1785
+ "field": "SizeRange",
1786
+ "populates": "UserList.sizeRange",
1787
+ "filterable": false
1788
+ },
1789
+ {
1790
+ "field": "SizeRangeForSearch",
1791
+ "populates": "UserList.sizeRangeForSearch",
1792
+ "filterable": false
1793
+ },
1794
+ {
1795
+ "field": "Status",
1796
+ "populates": "UserList.status",
1797
+ "filterable": true
1798
+ },
1799
+ {
1800
+ "field": "UploadKeyType",
1801
+ "populates": "CrmBasedUserList.uploadKeyType",
1802
+ "filterable": false
1803
+ }
1804
+ ]
1805
+ },
1806
+ "assets": {
1807
+ "get": [
1808
+ {
1809
+ "field": "AssetId",
1810
+ "populates": "Asset.assetId",
1811
+ "filterable": true
1812
+ },
1813
+ {
1814
+ "field": "AssetName",
1815
+ "populates": "Asset.assetName",
1816
+ "filterable": true
1817
+ },
1818
+ {
1819
+ "field": "AssetStatus",
1820
+ "populates": "Asset.assetStatus",
1821
+ "filterable": true
1822
+ },
1823
+ {
1824
+ "field": "AssetSubtype",
1825
+ "populates": "Asset.assetSubtype",
1826
+ "filterable": true
1827
+ },
1828
+ {
1829
+ "field": "ImageFileSize",
1830
+ "populates": "ImageAsset.imageFileSize",
1831
+ "filterable": true
1832
+ },
1833
+ {
1834
+ "field": "ImageFullSizeUrl",
1835
+ "populates": "ImageDimensionInfo.imageUrl",
1836
+ "filterable": true
1837
+ },
1838
+ {
1839
+ "field": "ImageHeight",
1840
+ "populates": "ImageDimensionInfo.imageHeight",
1841
+ "filterable": true
1842
+ },
1843
+ {
1844
+ "field": "ImageMimeType",
1845
+ "populates": "ImageAsset.imageMimeType",
1846
+ "filterable": true
1847
+ },
1848
+ {
1849
+ "field": "ImageWidth",
1850
+ "populates": "ImageDimensionInfo.imageWidth",
1851
+ "filterable": true
1852
+ },
1853
+ {
1854
+ "field": "YouTubeVideoId",
1855
+ "populates": "YouTubeVideoAsset.youTubeVideoId",
1856
+ "filterable": true
1857
+ }
1858
+ ]
1859
+ },
1860
+ "batch_jobs": {
1861
+ "get": [
1862
+ {
1863
+ "field": "DownloadUrl",
1864
+ "populates": "BatchJob.downloadUrl",
1865
+ "filterable": false
1866
+ },
1867
+ {
1868
+ "field": "Id",
1869
+ "populates": "BatchJob.id",
1870
+ "filterable": true
1871
+ },
1872
+ {
1873
+ "field": "ProcessingErrors",
1874
+ "populates": "BatchJob.processingErrors",
1875
+ "filterable": false
1876
+ },
1877
+ {
1878
+ "field": "ProgressStats",
1879
+ "populates": "BatchJob.progressStats",
1880
+ "filterable": false
1881
+ },
1882
+ {
1883
+ "field": "Status",
1884
+ "populates": "BatchJob.status",
1885
+ "filterable": false
1886
+ }
1887
+ ]
1888
+ },
1889
+ "bidding_strategies": {
1890
+ "get": [
1891
+ {
1892
+ "field": "BiddingScheme",
1893
+ "populates": "SharedBiddingStrategy.biddingScheme",
1894
+ "filterable": false
1895
+ },
1896
+ {
1897
+ "field": "Id",
1898
+ "populates": "SharedBiddingStrategy.id",
1899
+ "filterable": true
1900
+ },
1901
+ {
1902
+ "field": "Name",
1903
+ "populates": "SharedBiddingStrategy.name",
1904
+ "filterable": true
1905
+ },
1906
+ {
1907
+ "field": "Status",
1908
+ "populates": "SharedBiddingStrategy.status",
1909
+ "filterable": true
1910
+ },
1911
+ {
1912
+ "field": "Type",
1913
+ "populates": "SharedBiddingStrategy.type",
1914
+ "filterable": true
1915
+ }
1916
+ ]
1917
+ },
1918
+ "budget_orders": {
1919
+ "get": [
1920
+ {
1921
+ "field": "BillingAccountId",
1922
+ "populates": "BudgetOrder.billingAccountId",
1923
+ "filterable": true
1924
+ },
1925
+ {
1926
+ "field": "BillingAccountName",
1927
+ "populates": "BudgetOrder.billingAccountName",
1928
+ "filterable": true
1929
+ },
1930
+ {
1931
+ "field": "BudgetOrderName",
1932
+ "populates": "BudgetOrder.budgetOrderName",
1933
+ "filterable": true
1934
+ },
1935
+ {
1936
+ "field": "EndDateTime",
1937
+ "populates": "BudgetOrder.endDateTime",
1938
+ "filterable": true
1939
+ },
1940
+ {
1941
+ "field": "Id",
1942
+ "populates": "BudgetOrder.id",
1943
+ "filterable": true
1944
+ },
1945
+ {
1946
+ "field": "LastRequest",
1947
+ "populates": "BudgetOrder.lastRequest",
1948
+ "filterable": false
1949
+ },
1950
+ {
1951
+ "field": "PoNumber",
1952
+ "populates": "BudgetOrder.poNumber",
1953
+ "filterable": true
1954
+ },
1955
+ {
1956
+ "field": "PrimaryBillingId",
1957
+ "populates": "BudgetOrder.primaryBillingId",
1958
+ "filterable": true
1959
+ },
1960
+ {
1961
+ "field": "SecondaryBillingId",
1962
+ "populates": "BudgetOrder.secondaryBillingId",
1963
+ "filterable": true
1964
+ },
1965
+ {
1966
+ "field": "SpendingLimit",
1967
+ "populates": "BudgetOrder.spendingLimit",
1968
+ "filterable": true
1969
+ },
1970
+ {
1971
+ "field": "StartDateTime",
1972
+ "populates": "BudgetOrder.startDateTime",
1973
+ "filterable": true
1974
+ },
1975
+ {
1976
+ "field": "TotalAdjustments",
1977
+ "populates": "BudgetOrder.totalAdjustments",
1978
+ "filterable": true
1979
+ }
1980
+ ]
1981
+ },
1982
+ "budgets": {
1983
+ "get": [
1984
+ {
1985
+ "field": "Amount",
1986
+ "populates": "Budget.amount",
1987
+ "filterable": true
1988
+ },
1989
+ {
1990
+ "field": "BudgetId",
1991
+ "populates": "Budget.budgetId",
1992
+ "filterable": true
1993
+ },
1994
+ {
1995
+ "field": "BudgetName",
1996
+ "populates": "Budget.name",
1997
+ "filterable": true
1998
+ },
1999
+ {
2000
+ "field": "BudgetReferenceCount",
2001
+ "populates": "Budget.referenceCount",
2002
+ "filterable": true
2003
+ },
2004
+ {
2005
+ "field": "BudgetStatus",
2006
+ "populates": "Budget.status",
2007
+ "filterable": true
2008
+ },
2009
+ {
2010
+ "field": "DeliveryMethod",
2011
+ "populates": "Budget.deliveryMethod",
2012
+ "filterable": false
2013
+ },
2014
+ {
2015
+ "field": "IsBudgetExplicitlyShared",
2016
+ "populates": "Budget.isExplicitlyShared",
2017
+ "filterable": true
2018
+ }
2019
+ ]
2020
+ },
2021
+ "campaign_bid_modifiers": {
2022
+ "get": [
2023
+ {
2024
+ "field": "AdvertisingChannelType",
2025
+ "populates": "CampaignBidModifier.advertisingChannelType",
2026
+ "filterable": true
2027
+ },
2028
+ {
2029
+ "field": "BidModifier",
2030
+ "populates": "CampaignBidModifier.bidModifier",
2031
+ "filterable": true
2032
+ },
2033
+ {
2034
+ "field": "CampaignId",
2035
+ "populates": "CampaignBidModifier.campaignId",
2036
+ "filterable": true
2037
+ },
2038
+ {
2039
+ "field": "CampaignName",
2040
+ "populates": "CampaignBidModifier.campaignName",
2041
+ "filterable": true
2042
+ },
2043
+ {
2044
+ "field": "CriteriaType",
2045
+ "populates": "Criterion.type",
2046
+ "filterable": true
2047
+ },
2048
+ {
2049
+ "field": "Id",
2050
+ "populates": "Criterion.id",
2051
+ "filterable": true
2052
+ }
2053
+ ]
2054
+ },
2055
+ "campaign_criteria": {
2056
+ "get": [
2057
+ {
2058
+ "field": "Address",
2059
+ "populates": "Proximity.address",
2060
+ "filterable": false
2061
+ },
2062
+ {
2063
+ "field": "AgeRangeType",
2064
+ "populates": "AgeRange.ageRangeType",
2065
+ "filterable": false
2066
+ },
2067
+ {
2068
+ "field": "AppId",
2069
+ "populates": "MobileApplication.appId",
2070
+ "filterable": true
2071
+ },
2072
+ {
2073
+ "field": "BaseCampaignId",
2074
+ "populates": "CampaignCriterion.baseCampaignId",
2075
+ "filterable": true
2076
+ },
2077
+ {
2078
+ "field": "BidModifier",
2079
+ "populates": "CampaignCriterion.bidModifier",
2080
+ "filterable": true
2081
+ },
2082
+ {
2083
+ "field": "CampaignCriterionStatus",
2084
+ "populates": "CampaignCriterion.campaignCriterionStatus",
2085
+ "filterable": true
2086
+ },
2087
+ {
2088
+ "field": "CampaignId",
2089
+ "populates": "CampaignCriterion.campaignId",
2090
+ "filterable": true
2091
+ },
2092
+ {
2093
+ "field": "CarrierCountryCode",
2094
+ "populates": "Carrier.countryCode",
2095
+ "filterable": false
2096
+ },
2097
+ {
2098
+ "field": "CarrierName",
2099
+ "populates": "Carrier.name",
2100
+ "filterable": false
2101
+ },
2102
+ {
2103
+ "field": "ChannelId",
2104
+ "populates": "YouTubeChannel.channelId",
2105
+ "filterable": false
2106
+ },
2107
+ {
2108
+ "field": "ChannelName",
2109
+ "populates": "YouTubeChannel.channelName",
2110
+ "filterable": false
2111
+ },
2112
+ {
2113
+ "field": "ContentLabelType",
2114
+ "populates": "ContentLabel.contentLabelType",
2115
+ "filterable": true
2116
+ },
2117
+ {
2118
+ "field": "CriteriaType",
2119
+ "populates": "Criterion.type",
2120
+ "filterable": true
2121
+ },
2122
+ {
2123
+ "field": "DayOfWeek",
2124
+ "populates": "AdSchedule.dayOfWeek",
2125
+ "filterable": false
2126
+ },
2127
+ {
2128
+ "field": "DeviceName",
2129
+ "populates": "MobileDevice.deviceName",
2130
+ "filterable": false
2131
+ },
2132
+ {
2133
+ "field": "DeviceType",
2134
+ "populates": "MobileDevice.deviceType",
2135
+ "filterable": false
2136
+ },
2137
+ {
2138
+ "field": "Dimensions",
2139
+ "populates": "ProductScope.dimensions",
2140
+ "filterable": false
2141
+ },
2142
+ {
2143
+ "field": "DisplayName",
2144
+ "populates": "MobileApplication.displayName",
2145
+ "filterable": true
2146
+ },
2147
+ {
2148
+ "field": "DisplayType",
2149
+ "populates": "Location.displayType",
2150
+ "filterable": false
2151
+ },
2152
+ {
2153
+ "field": "EndHour",
2154
+ "populates": "AdSchedule.endHour",
2155
+ "filterable": false
2156
+ },
2157
+ {
2158
+ "field": "EndMinute",
2159
+ "populates": "AdSchedule.endMinute",
2160
+ "filterable": false
2161
+ },
2162
+ {
2163
+ "field": "FeedId",
2164
+ "populates": "LocationGroups.feedId",
2165
+ "filterable": false
2166
+ },
2167
+ {
2168
+ "field": "GenderType",
2169
+ "populates": "Gender.genderType",
2170
+ "filterable": false
2171
+ },
2172
+ {
2173
+ "field": "GeoPoint",
2174
+ "populates": "Proximity.geoPoint",
2175
+ "filterable": false
2176
+ },
2177
+ {
2178
+ "field": "Id",
2179
+ "populates": "Criterion.id",
2180
+ "filterable": true
2181
+ },
2182
+ {
2183
+ "field": "IncomeRangeType",
2184
+ "populates": "IncomeRange.incomeRangeType",
2185
+ "filterable": false
2186
+ },
2187
+ {
2188
+ "field": "IpAddress",
2189
+ "populates": "IpBlock.ipAddress",
2190
+ "filterable": true
2191
+ },
2192
+ {
2193
+ "field": "IsNegative",
2194
+ "populates": "CampaignCriterion.isNegative",
2195
+ "filterable": true
2196
+ },
2197
+ {
2198
+ "field": "KeywordMatchType",
2199
+ "populates": "Keyword.matchType",
2200
+ "filterable": true
2201
+ },
2202
+ {
2203
+ "field": "KeywordText",
2204
+ "populates": "Keyword.text",
2205
+ "filterable": true
2206
+ },
2207
+ {
2208
+ "field": "LanguageCode",
2209
+ "populates": "Language.code",
2210
+ "filterable": false
2211
+ },
2212
+ {
2213
+ "field": "LanguageName",
2214
+ "populates": "Language.name",
2215
+ "filterable": false
2216
+ },
2217
+ {
2218
+ "field": "LocationName",
2219
+ "populates": "Location.locationName",
2220
+ "filterable": true
2221
+ },
2222
+ {
2223
+ "field": "ManufacturerName",
2224
+ "populates": "MobileDevice.manufacturerName",
2225
+ "filterable": false
2226
+ },
2227
+ {
2228
+ "field": "MatchingFunction",
2229
+ "populates": "LocationGroups.matchingFunction",
2230
+ "filterable": false
2231
+ },
2232
+ {
2233
+ "field": "MobileAppCategoryId",
2234
+ "populates": "MobileAppCategory.mobileAppCategoryId",
2235
+ "filterable": false
2236
+ },
2237
+ {
2238
+ "field": "OperatingSystemName",
2239
+ "populates": "MobileDevice.operatingSystemName",
2240
+ "filterable": false
2241
+ },
2242
+ {
2243
+ "field": "OperatingSystemName",
2244
+ "populates": "OperatingSystemVersion.name",
2245
+ "filterable": false
2246
+ },
2247
+ {
2248
+ "field": "OperatorType",
2249
+ "populates": "OperatingSystemVersion.operatorType",
2250
+ "filterable": false
2251
+ },
2252
+ {
2253
+ "field": "OsMajorVersion",
2254
+ "populates": "OperatingSystemVersion.osMajorVersion",
2255
+ "filterable": false
2256
+ },
2257
+ {
2258
+ "field": "OsMinorVersion",
2259
+ "populates": "OperatingSystemVersion.osMinorVersion",
2260
+ "filterable": false
2261
+ },
2262
+ {
2263
+ "field": "Parameter",
2264
+ "populates": "Webpage.parameter",
2265
+ "filterable": false
2266
+ },
2267
+ {
2268
+ "field": "ParentLocations",
2269
+ "populates": "Location.parentLocations",
2270
+ "filterable": false
2271
+ },
2272
+ {
2273
+ "field": "ParentType",
2274
+ "populates": "Parent.parentType",
2275
+ "filterable": false
2276
+ },
2277
+ {
2278
+ "field": "Path",
2279
+ "populates": "Vertical.path",
2280
+ "filterable": false
2281
+ },
2282
+ {
2283
+ "field": "PlacementUrl",
2284
+ "populates": "Placement.url",
2285
+ "filterable": true
2286
+ },
2287
+ {
2288
+ "field": "PlatformName",
2289
+ "populates": "Platform.platformName",
2290
+ "filterable": true
2291
+ },
2292
+ {
2293
+ "field": "RadiusDistanceUnits",
2294
+ "populates": "Proximity.radiusDistanceUnits",
2295
+ "filterable": false
2296
+ },
2297
+ {
2298
+ "field": "RadiusInUnits",
2299
+ "populates": "Proximity.radiusInUnits",
2300
+ "filterable": false
2301
+ },
2302
+ {
2303
+ "field": "StartHour",
2304
+ "populates": "AdSchedule.startHour",
2305
+ "filterable": false
2306
+ },
2307
+ {
2308
+ "field": "StartMinute",
2309
+ "populates": "AdSchedule.startMinute",
2310
+ "filterable": false
2311
+ },
2312
+ {
2313
+ "field": "TargetingStatus",
2314
+ "populates": "Location.targetingStatus",
2315
+ "filterable": false
2316
+ },
2317
+ {
2318
+ "field": "UserInterestId",
2319
+ "populates": "CriterionUserInterest.userInterestId",
2320
+ "filterable": false
2321
+ },
2322
+ {
2323
+ "field": "UserInterestName",
2324
+ "populates": "CriterionUserInterest.userInterestName",
2325
+ "filterable": false
2326
+ },
2327
+ {
2328
+ "field": "UserInterestParentId",
2329
+ "populates": "CriterionUserInterest.userInterestParentId",
2330
+ "filterable": false
2331
+ },
2332
+ {
2333
+ "field": "UserListEligibleForDisplay",
2334
+ "populates": "CriterionUserList.userListEligibleForDisplay",
2335
+ "filterable": true
2336
+ },
2337
+ {
2338
+ "field": "UserListEligibleForSearch",
2339
+ "populates": "CriterionUserList.userListEligibleForSearch",
2340
+ "filterable": true
2341
+ },
2342
+ {
2343
+ "field": "UserListId",
2344
+ "populates": "CriterionUserList.userListId",
2345
+ "filterable": false
2346
+ },
2347
+ {
2348
+ "field": "UserListMembershipStatus",
2349
+ "populates": "CriterionUserList.userListMembershipStatus",
2350
+ "filterable": true
2351
+ },
2352
+ {
2353
+ "field": "UserListName",
2354
+ "populates": "CriterionUserList.userListName",
2355
+ "filterable": false
2356
+ },
2357
+ {
2358
+ "field": "VerticalId",
2359
+ "populates": "Vertical.verticalId",
2360
+ "filterable": false
2361
+ },
2362
+ {
2363
+ "field": "VerticalParentId",
2364
+ "populates": "Vertical.verticalParentId",
2365
+ "filterable": false
2366
+ },
2367
+ {
2368
+ "field": "VideoId",
2369
+ "populates": "YouTubeVideo.videoId",
2370
+ "filterable": false
2371
+ },
2372
+ {
2373
+ "field": "VideoName",
2374
+ "populates": "YouTubeVideo.videoName",
2375
+ "filterable": false
2376
+ }
2377
+ ]
2378
+ },
2379
+ "campaign_extension_settings": {
2380
+ "get": [
2381
+ {
2382
+ "field": "CampaignId",
2383
+ "populates": "CampaignExtensionSetting.campaignId",
2384
+ "filterable": true
2385
+ },
2386
+ {
2387
+ "field": "ExtensionType",
2388
+ "populates": "CampaignExtensionSetting.extensionType",
2389
+ "filterable": true
2390
+ },
2391
+ {
2392
+ "field": "Extensions",
2393
+ "populates": "ExtensionSetting.extensions",
2394
+ "filterable": false
2395
+ },
2396
+ {
2397
+ "field": "PlatformRestrictions",
2398
+ "populates": "ExtensionSetting.platformRestrictions",
2399
+ "filterable": false
2400
+ }
2401
+ ]
2402
+ },
2403
+ "campaign_feeds": {
2404
+ "get": [
2405
+ {
2406
+ "field": "BaseCampaignId",
2407
+ "populates": "CampaignFeed.baseCampaignId",
2408
+ "filterable": true
2409
+ },
2410
+ {
2411
+ "field": "CampaignId",
2412
+ "populates": "CampaignFeed.campaignId",
2413
+ "filterable": true
2414
+ },
2415
+ {
2416
+ "field": "FeedId",
2417
+ "populates": "CampaignFeed.feedId",
2418
+ "filterable": true
2419
+ },
2420
+ {
2421
+ "field": "MatchingFunction",
2422
+ "populates": "CampaignFeed.matchingFunction",
2423
+ "filterable": false
2424
+ },
2425
+ {
2426
+ "field": "PlaceholderTypes",
2427
+ "populates": "CampaignFeed.placeholderTypes",
2428
+ "filterable": true
2429
+ },
2430
+ {
2431
+ "field": "Status",
2432
+ "populates": "CampaignFeed.status",
2433
+ "filterable": true
2434
+ }
2435
+ ]
2436
+ },
2437
+ "campaign_group_performance_targets": {
2438
+ "get": [
2439
+ {
2440
+ "field": "CampaignGroupId",
2441
+ "populates": "CampaignGroupPerformanceTarget.campaignGroupId",
2442
+ "filterable": true
2443
+ },
2444
+ {
2445
+ "field": "EfficiencyTargetType",
2446
+ "populates": "PerformanceTarget.efficiencyTargetType",
2447
+ "filterable": true
2448
+ },
2449
+ {
2450
+ "field": "EfficiencyTargetValue",
2451
+ "populates": "PerformanceTarget.efficiencyTargetValue",
2452
+ "filterable": true
2453
+ },
2454
+ {
2455
+ "field": "EndDate",
2456
+ "populates": "PerformanceTarget.endDate",
2457
+ "filterable": true
2458
+ },
2459
+ {
2460
+ "field": "ForecastStatus",
2461
+ "populates": "PerformanceTarget.forecastStatus",
2462
+ "filterable": true
2463
+ },
2464
+ {
2465
+ "field": "HasPromotedSuggestions",
2466
+ "populates": "PerformanceTarget.hasPromotedSuggestions",
2467
+ "filterable": true
2468
+ },
2469
+ {
2470
+ "field": "Id",
2471
+ "populates": "CampaignGroupPerformanceTarget.id",
2472
+ "filterable": true
2473
+ },
2474
+ {
2475
+ "field": "SpendTarget",
2476
+ "populates": "PerformanceTarget.spendTarget",
2477
+ "filterable": true
2478
+ },
2479
+ {
2480
+ "field": "SpendTargetType",
2481
+ "populates": "PerformanceTarget.spendTargetType",
2482
+ "filterable": true
2483
+ },
2484
+ {
2485
+ "field": "StartDate",
2486
+ "populates": "PerformanceTarget.startDate",
2487
+ "filterable": true
2488
+ },
2489
+ {
2490
+ "field": "VolumeGoalType",
2491
+ "populates": "PerformanceTarget.volumeGoalType",
2492
+ "filterable": true
2493
+ },
2494
+ {
2495
+ "field": "VolumeTargetValue",
2496
+ "populates": "PerformanceTarget.volumeTargetValue",
2497
+ "filterable": true
2498
+ }
2499
+ ]
2500
+ },
2501
+ "campaign_groups": {
2502
+ "get": [
2503
+ {
2504
+ "field": "Id",
2505
+ "populates": "CampaignGroup.id",
2506
+ "filterable": true
2507
+ },
2508
+ {
2509
+ "field": "Name",
2510
+ "populates": "CampaignGroup.name",
2511
+ "filterable": true
2512
+ },
2513
+ {
2514
+ "field": "Status",
2515
+ "populates": "CampaignGroup.status",
2516
+ "filterable": true
2517
+ }
2518
+ ]
2519
+ },
2520
+ "campaigns": {
2521
+ "get": [
2522
+ {
2523
+ "field": "AdServingOptimizationStatus",
2524
+ "populates": "Campaign.adServingOptimizationStatus",
2525
+ "filterable": false
2526
+ },
2527
+ {
2528
+ "field": "AdvertisingChannelSubType",
2529
+ "populates": "Campaign.advertisingChannelSubType",
2530
+ "filterable": true
2531
+ },
2532
+ {
2533
+ "field": "AdvertisingChannelType",
2534
+ "populates": "Campaign.advertisingChannelType",
2535
+ "filterable": true
2536
+ },
2537
+ {
2538
+ "field": "Amount",
2539
+ "populates": "Budget.amount",
2540
+ "filterable": true
2541
+ },
2542
+ {
2543
+ "field": "AppId",
2544
+ "populates": "UniversalAppCampaignInfo.appId",
2545
+ "filterable": true
2546
+ },
2547
+ {
2548
+ "field": "AppVendor",
2549
+ "populates": "UniversalAppCampaignInfo.appVendor",
2550
+ "filterable": true
2551
+ },
2552
+ {
2553
+ "field": "BaseCampaignId",
2554
+ "populates": "Campaign.baseCampaignId",
2555
+ "filterable": true
2556
+ },
2557
+ {
2558
+ "field": "BiddingStrategyGoalType",
2559
+ "populates": "UniversalAppCampaignInfo.biddingStrategyGoalType",
2560
+ "filterable": true
2561
+ },
2562
+ {
2563
+ "field": "BiddingStrategyId",
2564
+ "populates": "BiddingStrategyConfiguration.biddingStrategyId",
2565
+ "filterable": true
2566
+ },
2567
+ {
2568
+ "field": "BiddingStrategyName",
2569
+ "populates": "BiddingStrategyConfiguration.biddingStrategyName",
2570
+ "filterable": true
2571
+ },
2572
+ {
2573
+ "field": "BiddingStrategyType",
2574
+ "populates": "BiddingStrategyConfiguration.biddingStrategyType",
2575
+ "filterable": true
2576
+ },
2577
+ {
2578
+ "field": "BudgetId",
2579
+ "populates": "Budget.budgetId",
2580
+ "filterable": true
2581
+ },
2582
+ {
2583
+ "field": "BudgetName",
2584
+ "populates": "Budget.name",
2585
+ "filterable": false
2586
+ },
2587
+ {
2588
+ "field": "BudgetReferenceCount",
2589
+ "populates": "Budget.referenceCount",
2590
+ "filterable": true
2591
+ },
2592
+ {
2593
+ "field": "BudgetStatus",
2594
+ "populates": "Budget.status",
2595
+ "filterable": true
2596
+ },
2597
+ {
2598
+ "field": "CampaignGroupId",
2599
+ "populates": "Campaign.campaignGroupId",
2600
+ "filterable": true
2601
+ },
2602
+ {
2603
+ "field": "CampaignTrialType",
2604
+ "populates": "Campaign.campaignTrialType",
2605
+ "filterable": true
2606
+ },
2607
+ {
2608
+ "field": "DeliveryMethod",
2609
+ "populates": "Budget.deliveryMethod",
2610
+ "filterable": false
2611
+ },
2612
+ {
2613
+ "field": "Eligible",
2614
+ "populates": "ConversionOptimizerEligibility.eligible",
2615
+ "filterable": false
2616
+ },
2617
+ {
2618
+ "field": "EndDate",
2619
+ "populates": "Campaign.endDate",
2620
+ "filterable": true
2621
+ },
2622
+ {
2623
+ "field": "EnhancedCpcEnabled",
2624
+ "populates": "ManualCpcBiddingScheme.enhancedCpcEnabled",
2625
+ "filterable": true
2626
+ },
2627
+ {
2628
+ "field": "FinalUrlSuffix",
2629
+ "populates": "Campaign.finalUrlSuffix",
2630
+ "filterable": true
2631
+ },
2632
+ {
2633
+ "field": "FrequencyCapMaxImpressions",
2634
+ "populates": "FrequencyCap.impressions",
2635
+ "filterable": true
2636
+ },
2637
+ {
2638
+ "field": "Id",
2639
+ "populates": "Campaign.id",
2640
+ "filterable": true
2641
+ },
2642
+ {
2643
+ "field": "IsBudgetExplicitlyShared",
2644
+ "populates": "Budget.isExplicitlyShared",
2645
+ "filterable": false
2646
+ },
2647
+ {
2648
+ "field": "Labels",
2649
+ "populates": "Campaign.labels",
2650
+ "filterable": true
2651
+ },
2652
+ {
2653
+ "field": "Level",
2654
+ "populates": "FrequencyCap.level",
2655
+ "filterable": true
2656
+ },
2657
+ {
2658
+ "field": "MaximizeConversionValueTargetRoas",
2659
+ "populates": "MaximizeConversionValueBiddingScheme.targetRoas",
2660
+ "filterable": true
2661
+ },
2662
+ {
2663
+ "field": "Name",
2664
+ "populates": "Campaign.name",
2665
+ "filterable": true
2666
+ },
2667
+ {
2668
+ "field": "RejectionReasons",
2669
+ "populates": "ConversionOptimizerEligibility.rejectionReasons",
2670
+ "filterable": false
2671
+ },
2672
+ {
2673
+ "field": "SelectiveOptimization",
2674
+ "populates": "Campaign.selectiveOptimization",
2675
+ "filterable": false
2676
+ },
2677
+ {
2678
+ "field": "ServingStatus",
2679
+ "populates": "Campaign.servingStatus",
2680
+ "filterable": true
2681
+ },
2682
+ {
2683
+ "field": "Settings",
2684
+ "populates": "Campaign.settings",
2685
+ "filterable": false
2686
+ },
2687
+ {
2688
+ "field": "StartDate",
2689
+ "populates": "Campaign.startDate",
2690
+ "filterable": true
2691
+ },
2692
+ {
2693
+ "field": "Status",
2694
+ "populates": "Campaign.status",
2695
+ "filterable": true
2696
+ },
2697
+ {
2698
+ "field": "TargetContentNetwork",
2699
+ "populates": "NetworkSetting.targetContentNetwork",
2700
+ "filterable": true
2701
+ },
2702
+ {
2703
+ "field": "TargetCpa",
2704
+ "populates": "TargetCpaBiddingScheme.targetCpa",
2705
+ "filterable": false
2706
+ },
2707
+ {
2708
+ "field": "TargetCpaMaxCpcBidCeiling",
2709
+ "populates": "TargetCpaBiddingScheme.maxCpcBidCeiling",
2710
+ "filterable": true
2711
+ },
2712
+ {
2713
+ "field": "TargetCpaMaxCpcBidFloor",
2714
+ "populates": "TargetCpaBiddingScheme.maxCpcBidFloor",
2715
+ "filterable": true
2716
+ },
2717
+ {
2718
+ "field": "TargetGoogleSearch",
2719
+ "populates": "NetworkSetting.targetGoogleSearch",
2720
+ "filterable": true
2721
+ },
2722
+ {
2723
+ "field": "TargetPartnerSearchNetwork",
2724
+ "populates": "NetworkSetting.targetPartnerSearchNetwork",
2725
+ "filterable": true
2726
+ },
2727
+ {
2728
+ "field": "TargetRoas",
2729
+ "populates": "TargetRoasBiddingScheme.targetRoas",
2730
+ "filterable": false
2731
+ },
2732
+ {
2733
+ "field": "TargetRoasBidCeiling",
2734
+ "populates": "TargetRoasBiddingScheme.bidCeiling",
2735
+ "filterable": false
2736
+ },
2737
+ {
2738
+ "field": "TargetRoasBidFloor",
2739
+ "populates": "TargetRoasBiddingScheme.bidFloor",
2740
+ "filterable": false
2741
+ },
2742
+ {
2743
+ "field": "TargetSearchNetwork",
2744
+ "populates": "NetworkSetting.targetSearchNetwork",
2745
+ "filterable": true
2746
+ },
2747
+ {
2748
+ "field": "TargetSpendBidCeiling",
2749
+ "populates": "TargetSpendBiddingScheme.bidCeiling",
2750
+ "filterable": false
2751
+ },
2752
+ {
2753
+ "field": "TargetSpendSpendTarget",
2754
+ "populates": "TargetSpendBiddingScheme.spendTarget",
2755
+ "filterable": false
2756
+ },
2757
+ {
2758
+ "field": "TimeUnit",
2759
+ "populates": "FrequencyCap.timeUnit",
2760
+ "filterable": true
2761
+ },
2762
+ {
2763
+ "field": "TrackingUrlTemplate",
2764
+ "populates": "Campaign.trackingUrlTemplate",
2765
+ "filterable": true
2766
+ },
2767
+ {
2768
+ "field": "UrlCustomParameters",
2769
+ "populates": "Campaign.urlCustomParameters",
2770
+ "filterable": false
2771
+ },
2772
+ {
2773
+ "field": "VanityPharmaDisplayUrlMode",
2774
+ "populates": "VanityPharma.vanityPharmaDisplayUrlMode",
2775
+ "filterable": true
2776
+ },
2777
+ {
2778
+ "field": "VanityPharmaText",
2779
+ "populates": "VanityPharma.vanityPharmaText",
2780
+ "filterable": true
2781
+ },
2782
+ {
2783
+ "field": "ViewableCpmEnabled",
2784
+ "populates": "ManualCpmBiddingScheme.viewableCpmEnabled",
2785
+ "filterable": true
2786
+ }
2787
+ ]
2788
+ },
2789
+ "campaign_shared_sets": {
2790
+ "get": [
2791
+ {
2792
+ "field": "CampaignId",
2793
+ "populates": "CampaignSharedSet.campaignId",
2794
+ "filterable": true
2795
+ },
2796
+ {
2797
+ "field": "CampaignName",
2798
+ "populates": "CampaignSharedSet.campaignName",
2799
+ "filterable": false
2800
+ },
2801
+ {
2802
+ "field": "SharedSetId",
2803
+ "populates": "CampaignSharedSet.sharedSetId",
2804
+ "filterable": true
2805
+ },
2806
+ {
2807
+ "field": "SharedSetName",
2808
+ "populates": "CampaignSharedSet.sharedSetName",
2809
+ "filterable": false
2810
+ },
2811
+ {
2812
+ "field": "SharedSetType",
2813
+ "populates": "CampaignSharedSet.sharedSetType",
2814
+ "filterable": true
2815
+ },
2816
+ {
2817
+ "field": "Status",
2818
+ "populates": "CampaignSharedSet.status",
2819
+ "filterable": true
2820
+ }
2821
+ ]
2822
+ },
2823
+ "constant_data": {
2824
+ "get_product_bidding_category_data": [
2825
+ {
2826
+ "field": "BiddingCategoryStatus",
2827
+ "populates": "ProductBiddingCategoryData.status",
2828
+ "filterable": true
2829
+ },
2830
+ {
2831
+ "field": "Country",
2832
+ "populates": "ProductBiddingCategoryData.country",
2833
+ "filterable": true
2834
+ }
2835
+ ]
2836
+ },
2837
+ "conversion_trackers": {
2838
+ "get": [
2839
+ {
2840
+ "field": "AlwaysUseDefaultRevenueValue",
2841
+ "populates": "ConversionTracker.alwaysUseDefaultRevenueValue",
2842
+ "filterable": true
2843
+ },
2844
+ {
2845
+ "field": "AppId",
2846
+ "populates": "AppConversion.appId",
2847
+ "filterable": true
2848
+ },
2849
+ {
2850
+ "field": "AppPlatform",
2851
+ "populates": "AppConversion.appPlatform",
2852
+ "filterable": true
2853
+ },
2854
+ {
2855
+ "field": "AppPostbackUrl",
2856
+ "populates": "AppConversion.appPostbackUrl",
2857
+ "filterable": true
2858
+ },
2859
+ {
2860
+ "field": "AttributionModelType",
2861
+ "populates": "ConversionTracker.attributionModelType",
2862
+ "filterable": false
2863
+ },
2864
+ {
2865
+ "field": "Category",
2866
+ "populates": "ConversionTracker.category",
2867
+ "filterable": true
2868
+ },
2869
+ {
2870
+ "field": "ConversionTypeOwnerCustomerId",
2871
+ "populates": "ConversionTracker.conversionTypeOwnerCustomerId",
2872
+ "filterable": true
2873
+ },
2874
+ {
2875
+ "field": "CountingType",
2876
+ "populates": "ConversionTracker.countingType",
2877
+ "filterable": true
2878
+ },
2879
+ {
2880
+ "field": "CtcLookbackWindow",
2881
+ "populates": "ConversionTracker.ctcLookbackWindow",
2882
+ "filterable": true
2883
+ },
2884
+ {
2885
+ "field": "DataDrivenModelStatus",
2886
+ "populates": "ConversionTracker.dataDrivenModelStatus",
2887
+ "filterable": true
2888
+ },
2889
+ {
2890
+ "field": "DefaultRevenueCurrencyCode",
2891
+ "populates": "ConversionTracker.defaultRevenueCurrencyCode",
2892
+ "filterable": true
2893
+ },
2894
+ {
2895
+ "field": "DefaultRevenueValue",
2896
+ "populates": "ConversionTracker.defaultRevenueValue",
2897
+ "filterable": true
2898
+ },
2899
+ {
2900
+ "field": "ExcludeFromBidding",
2901
+ "populates": "ConversionTracker.excludeFromBidding",
2902
+ "filterable": true
2903
+ },
2904
+ {
2905
+ "field": "GoogleEventSnippet",
2906
+ "populates": "ConversionTracker.googleEventSnippet",
2907
+ "filterable": true
2908
+ },
2909
+ {
2910
+ "field": "GoogleGlobalSiteTag",
2911
+ "populates": "ConversionTracker.googleGlobalSiteTag",
2912
+ "filterable": true
2913
+ },
2914
+ {
2915
+ "field": "Id",
2916
+ "populates": "ConversionTracker.id",
2917
+ "filterable": true
2918
+ },
2919
+ {
2920
+ "field": "LastReceivedRequestTime",
2921
+ "populates": "ConversionTracker.lastReceivedRequestTime",
2922
+ "filterable": false
2923
+ },
2924
+ {
2925
+ "field": "MostRecentConversionDate",
2926
+ "populates": "ConversionTracker.mostRecentConversionDate",
2927
+ "filterable": false
2928
+ },
2929
+ {
2930
+ "field": "Name",
2931
+ "populates": "ConversionTracker.name",
2932
+ "filterable": true
2933
+ },
2934
+ {
2935
+ "field": "OriginalConversionTypeId",
2936
+ "populates": "ConversionTracker.originalConversionTypeId",
2937
+ "filterable": true
2938
+ },
2939
+ {
2940
+ "field": "PhoneCallDuration",
2941
+ "populates": "AdCallMetricsConversion.phoneCallDuration",
2942
+ "filterable": true
2943
+ },
2944
+ {
2945
+ "field": "Status",
2946
+ "populates": "ConversionTracker.status",
2947
+ "filterable": true
2948
+ },
2949
+ {
2950
+ "field": "TrackingCodeType",
2951
+ "populates": "AdWordsConversionTracker.trackingCodeType",
2952
+ "filterable": true
2953
+ },
2954
+ {
2955
+ "field": "ViewthroughLookbackWindow",
2956
+ "populates": "ConversionTracker.viewthroughLookbackWindow",
2957
+ "filterable": true
2958
+ },
2959
+ {
2960
+ "field": "WebsitePhoneCallDuration",
2961
+ "populates": "WebsiteCallMetricsConversion.phoneCallDuration",
2962
+ "filterable": false
2963
+ }
2964
+ ]
2965
+ },
2966
+ "custom_affinities": {
2967
+ "get": [
2968
+ {
2969
+ "field": "CustomAffinityId",
2970
+ "populates": "CustomAffinity.id",
2971
+ "filterable": true
2972
+ },
2973
+ {
2974
+ "field": "Description",
2975
+ "populates": "CustomAffinity.description",
2976
+ "filterable": true
2977
+ },
2978
+ {
2979
+ "field": "Name",
2980
+ "populates": "CustomAffinity.name",
2981
+ "filterable": true
2982
+ },
2983
+ {
2984
+ "field": "Status",
2985
+ "populates": "CustomAffinity.status",
2986
+ "filterable": true
2987
+ },
2988
+ {
2989
+ "field": "Tokens",
2990
+ "populates": "CustomAffinity.tokens",
2991
+ "filterable": false
2992
+ },
2993
+ {
2994
+ "field": "Type",
2995
+ "populates": "CustomAffinity.type",
2996
+ "filterable": true
2997
+ }
2998
+ ]
2999
+ },
3000
+ "customer_extension_settings": {
3001
+ "get": [
3002
+ {
3003
+ "field": "ExtensionType",
3004
+ "populates": "CustomerExtensionSetting.extensionType",
3005
+ "filterable": true
3006
+ },
3007
+ {
3008
+ "field": "Extensions",
3009
+ "populates": "ExtensionSetting.extensions",
3010
+ "filterable": false
3011
+ },
3012
+ {
3013
+ "field": "PlatformRestrictions",
3014
+ "populates": "ExtensionSetting.platformRestrictions",
3015
+ "filterable": false
3016
+ }
3017
+ ]
3018
+ },
3019
+ "customer_feeds": {
3020
+ "get": [
3021
+ {
3022
+ "field": "FeedId",
3023
+ "populates": "CustomerFeed.feedId",
3024
+ "filterable": true
3025
+ },
3026
+ {
3027
+ "field": "MatchingFunction",
3028
+ "populates": "CustomerFeed.matchingFunction",
3029
+ "filterable": false
3030
+ },
3031
+ {
3032
+ "field": "PlaceholderTypes",
3033
+ "populates": "CustomerFeed.placeholderTypes",
3034
+ "filterable": true
3035
+ },
3036
+ {
3037
+ "field": "Status",
3038
+ "populates": "CustomerFeed.status",
3039
+ "filterable": true
3040
+ }
3041
+ ]
3042
+ },
3043
+ "customer_negative_criteria": {
3044
+ "get": [
3045
+ {
3046
+ "field": "AppId",
3047
+ "populates": "MobileApplication.appId",
3048
+ "filterable": true
3049
+ },
3050
+ {
3051
+ "field": "ChannelId",
3052
+ "populates": "YouTubeChannel.channelId",
3053
+ "filterable": false
3054
+ },
3055
+ {
3056
+ "field": "ChannelName",
3057
+ "populates": "YouTubeChannel.channelName",
3058
+ "filterable": false
3059
+ },
3060
+ {
3061
+ "field": "ContentLabelType",
3062
+ "populates": "ContentLabel.contentLabelType",
3063
+ "filterable": true
3064
+ },
3065
+ {
3066
+ "field": "CriteriaType",
3067
+ "populates": "Criterion.type",
3068
+ "filterable": true
3069
+ },
3070
+ {
3071
+ "field": "DisplayName",
3072
+ "populates": "MobileApplication.displayName",
3073
+ "filterable": true
3074
+ },
3075
+ {
3076
+ "field": "Id",
3077
+ "populates": "Criterion.id",
3078
+ "filterable": true
3079
+ },
3080
+ {
3081
+ "field": "MobileAppCategoryId",
3082
+ "populates": "MobileAppCategory.mobileAppCategoryId",
3083
+ "filterable": false
3084
+ },
3085
+ {
3086
+ "field": "PlacementUrl",
3087
+ "populates": "Placement.url",
3088
+ "filterable": true
3089
+ },
3090
+ {
3091
+ "field": "VideoId",
3092
+ "populates": "YouTubeVideo.videoId",
3093
+ "filterable": false
3094
+ },
3095
+ {
3096
+ "field": "VideoName",
3097
+ "populates": "YouTubeVideo.videoName",
3098
+ "filterable": false
3099
+ }
3100
+ ]
3101
+ },
3102
+ "customers": {
3103
+ "get_service_links": [
3104
+ {
3105
+ "field": "ServiceType",
3106
+ "populates": "ServiceLink.serviceType",
3107
+ "filterable": true
3108
+ }
3109
+ ]
3110
+ },
3111
+ "data": {
3112
+ "get_ad_group_bid_landscape": [
3113
+ {
3114
+ "field": "AdGroupId",
3115
+ "populates": "BidLandscape.adGroupId",
3116
+ "filterable": true
3117
+ },
3118
+ {
3119
+ "field": "Bid",
3120
+ "populates": "BidLandscape.LandscapePoint.bid",
3121
+ "filterable": true
3122
+ },
3123
+ {
3124
+ "field": "CampaignId",
3125
+ "populates": "BidLandscape.campaignId",
3126
+ "filterable": true
3127
+ },
3128
+ {
3129
+ "field": "EndDate",
3130
+ "populates": "BidLandscape.endDate",
3131
+ "filterable": false
3132
+ },
3133
+ {
3134
+ "field": "LandscapeCurrent",
3135
+ "populates": "AdGroupBidLandscape.landscapeCurrent",
3136
+ "filterable": true
3137
+ },
3138
+ {
3139
+ "field": "LandscapeType",
3140
+ "populates": "AdGroupBidLandscape.type",
3141
+ "filterable": true
3142
+ },
3143
+ {
3144
+ "field": "LocalClicks",
3145
+ "populates": "BidLandscape.LandscapePoint.clicks",
3146
+ "filterable": true
3147
+ },
3148
+ {
3149
+ "field": "LocalCost",
3150
+ "populates": "BidLandscape.LandscapePoint.cost",
3151
+ "filterable": true
3152
+ },
3153
+ {
3154
+ "field": "LocalImpressions",
3155
+ "populates": "BidLandscape.LandscapePoint.impressions",
3156
+ "filterable": true
3157
+ },
3158
+ {
3159
+ "field": "PromotedImpressions",
3160
+ "populates": "BidLandscape.LandscapePoint.promotedImpressions",
3161
+ "filterable": true
3162
+ },
3163
+ {
3164
+ "field": "StartDate",
3165
+ "populates": "BidLandscape.startDate",
3166
+ "filterable": false
3167
+ }
3168
+ ],
3169
+ "get_campaign_criterion_bid_landscape": [
3170
+ {
3171
+ "field": "BidModifier",
3172
+ "populates": "BidLandscape.LandscapePoint.bidModifier",
3173
+ "filterable": true
3174
+ },
3175
+ {
3176
+ "field": "CampaignId",
3177
+ "populates": "BidLandscape.campaignId",
3178
+ "filterable": true
3179
+ },
3180
+ {
3181
+ "field": "EndDate",
3182
+ "populates": "BidLandscape.endDate",
3183
+ "filterable": false
3184
+ },
3185
+ {
3186
+ "field": "LocalClicks",
3187
+ "populates": "BidLandscape.LandscapePoint.clicks",
3188
+ "filterable": true
3189
+ },
3190
+ {
3191
+ "field": "LocalCost",
3192
+ "populates": "BidLandscape.LandscapePoint.cost",
3193
+ "filterable": true
3194
+ },
3195
+ {
3196
+ "field": "LocalImpressions",
3197
+ "populates": "BidLandscape.LandscapePoint.impressions",
3198
+ "filterable": true
3199
+ },
3200
+ {
3201
+ "field": "PromotedImpressions",
3202
+ "populates": "BidLandscape.LandscapePoint.promotedImpressions",
3203
+ "filterable": true
3204
+ },
3205
+ {
3206
+ "field": "RequiredBudget",
3207
+ "populates": "BidLandscape.LandscapePoint.requiredBudget",
3208
+ "filterable": true
3209
+ },
3210
+ {
3211
+ "field": "StartDate",
3212
+ "populates": "BidLandscape.startDate",
3213
+ "filterable": false
3214
+ },
3215
+ {
3216
+ "field": "TotalLocalClicks",
3217
+ "populates": "BidLandscape.LandscapePoint.totalLocalClicks",
3218
+ "filterable": true
3219
+ },
3220
+ {
3221
+ "field": "TotalLocalCost",
3222
+ "populates": "BidLandscape.LandscapePoint.totalLocalCost",
3223
+ "filterable": true
3224
+ },
3225
+ {
3226
+ "field": "TotalLocalImpressions",
3227
+ "populates": "BidLandscape.LandscapePoint.totalLocalImpressions",
3228
+ "filterable": true
3229
+ },
3230
+ {
3231
+ "field": "TotalLocalPromotedImpressions",
3232
+ "populates": "BidLandscape.LandscapePoint.totalLocalPromotedImpressions",
3233
+ "filterable": true
3234
+ }
3235
+ ],
3236
+ "get_criterion_bid_landscape": [
3237
+ {
3238
+ "field": "AdGroupId",
3239
+ "populates": "BidLandscape.adGroupId",
3240
+ "filterable": true
3241
+ },
3242
+ {
3243
+ "field": "Bid",
3244
+ "populates": "BidLandscape.LandscapePoint.bid",
3245
+ "filterable": true
3246
+ },
3247
+ {
3248
+ "field": "CampaignId",
3249
+ "populates": "BidLandscape.campaignId",
3250
+ "filterable": true
3251
+ },
3252
+ {
3253
+ "field": "CriterionId",
3254
+ "populates": "CriterionBidLandscape.criterionId",
3255
+ "filterable": true
3256
+ },
3257
+ {
3258
+ "field": "EndDate",
3259
+ "populates": "BidLandscape.endDate",
3260
+ "filterable": false
3261
+ },
3262
+ {
3263
+ "field": "LocalClicks",
3264
+ "populates": "BidLandscape.LandscapePoint.clicks",
3265
+ "filterable": true
3266
+ },
3267
+ {
3268
+ "field": "LocalCost",
3269
+ "populates": "BidLandscape.LandscapePoint.cost",
3270
+ "filterable": true
3271
+ },
3272
+ {
3273
+ "field": "LocalImpressions",
3274
+ "populates": "BidLandscape.LandscapePoint.impressions",
3275
+ "filterable": true
3276
+ },
3277
+ {
3278
+ "field": "PromotedImpressions",
3279
+ "populates": "BidLandscape.LandscapePoint.promotedImpressions",
3280
+ "filterable": true
3281
+ },
3282
+ {
3283
+ "field": "StartDate",
3284
+ "populates": "BidLandscape.startDate",
3285
+ "filterable": false
3286
+ }
3287
+ ],
3288
+ "get_domain_category": [
3289
+ {
3290
+ "field": "CampaignId",
3291
+ "populates": "LevelOfDetail.campaignId",
3292
+ "filterable": true
3293
+ },
3294
+ {
3295
+ "field": "Category",
3296
+ "populates": "DomainCategory.category",
3297
+ "filterable": true
3298
+ },
3299
+ {
3300
+ "field": "CategoryRank",
3301
+ "populates": "DomainCategory.categoryRank",
3302
+ "filterable": false
3303
+ },
3304
+ {
3305
+ "field": "Coverage",
3306
+ "populates": "DomainCategory.coverage",
3307
+ "filterable": false
3308
+ },
3309
+ {
3310
+ "field": "DomainName",
3311
+ "populates": "DomainCategory.domainName",
3312
+ "filterable": true
3313
+ },
3314
+ {
3315
+ "field": "HasChild",
3316
+ "populates": "DomainCategory.hasChild",
3317
+ "filterable": false
3318
+ },
3319
+ {
3320
+ "field": "IsoLanguage",
3321
+ "populates": "DomainCategory.isoLanguage",
3322
+ "filterable": false
3323
+ },
3324
+ {
3325
+ "field": "RecommendedCpc",
3326
+ "populates": "DomainCategory.recommendedCpc",
3327
+ "filterable": false
3328
+ }
3329
+ ]
3330
+ },
3331
+ "draft_async_errors": {
3332
+ "get": [
3333
+ {
3334
+ "field": "AsyncError",
3335
+ "populates": "DraftAsyncError.asyncError",
3336
+ "filterable": false
3337
+ },
3338
+ {
3339
+ "field": "BaseAdGroupId",
3340
+ "populates": "DraftAsyncError.baseAdGroupId",
3341
+ "filterable": false
3342
+ },
3343
+ {
3344
+ "field": "BaseCampaignId",
3345
+ "populates": "DraftAsyncError.baseCampaignId",
3346
+ "filterable": true
3347
+ },
3348
+ {
3349
+ "field": "DraftAdGroupId",
3350
+ "populates": "DraftAsyncError.draftAdGroupId",
3351
+ "filterable": false
3352
+ },
3353
+ {
3354
+ "field": "DraftCampaignId",
3355
+ "populates": "DraftAsyncError.draftCampaignId",
3356
+ "filterable": false
3357
+ },
3358
+ {
3359
+ "field": "DraftId",
3360
+ "populates": "DraftAsyncError.draftId",
3361
+ "filterable": true
3362
+ }
3363
+ ]
3364
+ },
3365
+ "drafts": {
3366
+ "get": [
3367
+ {
3368
+ "field": "BaseCampaignId",
3369
+ "populates": "Draft.baseCampaignId",
3370
+ "filterable": true
3371
+ },
3372
+ {
3373
+ "field": "DraftCampaignId",
3374
+ "populates": "Draft.draftCampaignId",
3375
+ "filterable": true
3376
+ },
3377
+ {
3378
+ "field": "DraftId",
3379
+ "populates": "Draft.draftId",
3380
+ "filterable": true
3381
+ },
3382
+ {
3383
+ "field": "DraftName",
3384
+ "populates": "Draft.draftName",
3385
+ "filterable": true
3386
+ },
3387
+ {
3388
+ "field": "DraftStatus",
3389
+ "populates": "Draft.draftStatus",
3390
+ "filterable": true
3391
+ },
3392
+ {
3393
+ "field": "HasRunningTrial",
3394
+ "populates": "Draft.hasRunningTrial",
3395
+ "filterable": true
3396
+ }
3397
+ ]
3398
+ },
3399
+ "feed_items": {
3400
+ "get": [
3401
+ {
3402
+ "field": "AttributeValues",
3403
+ "populates": "FeedItem.attributeValues",
3404
+ "filterable": false
3405
+ },
3406
+ {
3407
+ "field": "EndTime",
3408
+ "populates": "FeedItem.endTime",
3409
+ "filterable": true
3410
+ },
3411
+ {
3412
+ "field": "FeedId",
3413
+ "populates": "FeedItem.feedId",
3414
+ "filterable": true
3415
+ },
3416
+ {
3417
+ "field": "FeedItemId",
3418
+ "populates": "FeedItem.feedItemId",
3419
+ "filterable": true
3420
+ },
3421
+ {
3422
+ "field": "GeoTargetingRestriction",
3423
+ "populates": "FeedItemGeoRestriction.geoRestriction",
3424
+ "filterable": true
3425
+ },
3426
+ {
3427
+ "field": "PolicySummaries",
3428
+ "populates": "FeedItem.policySummaries",
3429
+ "filterable": false
3430
+ },
3431
+ {
3432
+ "field": "StartTime",
3433
+ "populates": "FeedItem.startTime",
3434
+ "filterable": true
3435
+ },
3436
+ {
3437
+ "field": "Status",
3438
+ "populates": "FeedItem.status",
3439
+ "filterable": true
3440
+ },
3441
+ {
3442
+ "field": "UrlCustomParameters",
3443
+ "populates": "FeedItem.urlCustomParameters",
3444
+ "filterable": false
3445
+ }
3446
+ ]
3447
+ },
3448
+ "feed_item_targets": {
3449
+ "get": [
3450
+ {
3451
+ "field": "AdGroupId",
3452
+ "populates": "FeedItemAdGroupTarget.adGroupId",
3453
+ "filterable": true
3454
+ },
3455
+ {
3456
+ "field": "AdGroupName",
3457
+ "populates": "FeedItemAdGroupTarget.adGroupName",
3458
+ "filterable": true
3459
+ },
3460
+ {
3461
+ "field": "CampaignId",
3462
+ "populates": "FeedItemCampaignTarget.campaignId",
3463
+ "filterable": true
3464
+ },
3465
+ {
3466
+ "field": "CampaignName",
3467
+ "populates": "FeedItemCampaignTarget.campaignName",
3468
+ "filterable": true
3469
+ },
3470
+ {
3471
+ "field": "CriteriaType",
3472
+ "populates": "Criterion.type",
3473
+ "filterable": true
3474
+ },
3475
+ {
3476
+ "field": "DayOfWeek",
3477
+ "populates": "AdSchedule.dayOfWeek",
3478
+ "filterable": false
3479
+ },
3480
+ {
3481
+ "field": "DisplayType",
3482
+ "populates": "Location.displayType",
3483
+ "filterable": false
3484
+ },
3485
+ {
3486
+ "field": "EndHour",
3487
+ "populates": "AdSchedule.endHour",
3488
+ "filterable": false
3489
+ },
3490
+ {
3491
+ "field": "EndMinute",
3492
+ "populates": "AdSchedule.endMinute",
3493
+ "filterable": false
3494
+ },
3495
+ {
3496
+ "field": "FeedId",
3497
+ "populates": "FeedItemTarget.feedId",
3498
+ "filterable": true
3499
+ },
3500
+ {
3501
+ "field": "FeedItemId",
3502
+ "populates": "FeedItemTarget.feedItemId",
3503
+ "filterable": true
3504
+ },
3505
+ {
3506
+ "field": "Id",
3507
+ "populates": "Criterion.id",
3508
+ "filterable": true
3509
+ },
3510
+ {
3511
+ "field": "IsNegative",
3512
+ "populates": "FeedItemCriterionTarget.isNegative",
3513
+ "filterable": true
3514
+ },
3515
+ {
3516
+ "field": "KeywordMatchType",
3517
+ "populates": "Keyword.matchType",
3518
+ "filterable": true
3519
+ },
3520
+ {
3521
+ "field": "KeywordText",
3522
+ "populates": "Keyword.text",
3523
+ "filterable": true
3524
+ },
3525
+ {
3526
+ "field": "LocationName",
3527
+ "populates": "Location.locationName",
3528
+ "filterable": false
3529
+ },
3530
+ {
3531
+ "field": "ParentCampaignName",
3532
+ "populates": "FeedItemAdGroupTarget.parentCampaignName",
3533
+ "filterable": true
3534
+ },
3535
+ {
3536
+ "field": "ParentLocations",
3537
+ "populates": "Location.parentLocations",
3538
+ "filterable": false
3539
+ },
3540
+ {
3541
+ "field": "PlatformName",
3542
+ "populates": "Platform.platformName",
3543
+ "filterable": true
3544
+ },
3545
+ {
3546
+ "field": "StartHour",
3547
+ "populates": "AdSchedule.startHour",
3548
+ "filterable": false
3549
+ },
3550
+ {
3551
+ "field": "StartMinute",
3552
+ "populates": "AdSchedule.startMinute",
3553
+ "filterable": false
3554
+ },
3555
+ {
3556
+ "field": "Status",
3557
+ "populates": "FeedItemTarget.status",
3558
+ "filterable": true
3559
+ },
3560
+ {
3561
+ "field": "TargetType",
3562
+ "populates": "FeedItemTarget.targetType",
3563
+ "filterable": true
3564
+ },
3565
+ {
3566
+ "field": "TargetingStatus",
3567
+ "populates": "Location.targetingStatus",
3568
+ "filterable": false
3569
+ }
3570
+ ]
3571
+ },
3572
+ "feed_mappings": {
3573
+ "get": [
3574
+ {
3575
+ "field": "AttributeFieldMappings",
3576
+ "populates": "FeedMapping.attributeFieldMappings",
3577
+ "filterable": false
3578
+ },
3579
+ {
3580
+ "field": "CriterionType",
3581
+ "populates": "FeedMapping.criterionType",
3582
+ "filterable": true
3583
+ },
3584
+ {
3585
+ "field": "FeedId",
3586
+ "populates": "FeedMapping.feedId",
3587
+ "filterable": true
3588
+ },
3589
+ {
3590
+ "field": "FeedMappingId",
3591
+ "populates": "FeedMapping.feedMappingId",
3592
+ "filterable": true
3593
+ },
3594
+ {
3595
+ "field": "PlaceholderType",
3596
+ "populates": "FeedMapping.placeholderType",
3597
+ "filterable": true
3598
+ },
3599
+ {
3600
+ "field": "Status",
3601
+ "populates": "FeedMapping.status",
3602
+ "filterable": true
3603
+ }
3604
+ ]
3605
+ },
3606
+ "feeds": {
3607
+ "get": [
3608
+ {
3609
+ "field": "Attributes",
3610
+ "populates": "Feed.attributes",
3611
+ "filterable": false
3612
+ },
3613
+ {
3614
+ "field": "FeedStatus",
3615
+ "populates": "Feed.status",
3616
+ "filterable": true
3617
+ },
3618
+ {
3619
+ "field": "Id",
3620
+ "populates": "Feed.id",
3621
+ "filterable": true
3622
+ },
3623
+ {
3624
+ "field": "Name",
3625
+ "populates": "Feed.name",
3626
+ "filterable": true
3627
+ },
3628
+ {
3629
+ "field": "Origin",
3630
+ "populates": "Feed.origin",
3631
+ "filterable": true
3632
+ },
3633
+ {
3634
+ "field": "SystemFeedGenerationData",
3635
+ "populates": "Feed.systemFeedGenerationData",
3636
+ "filterable": false
3637
+ }
3638
+ ]
3639
+ },
3640
+ "labels": {
3641
+ "get": [
3642
+ {
3643
+ "field": "LabelAttribute",
3644
+ "populates": "Label.attribute",
3645
+ "filterable": false
3646
+ },
3647
+ {
3648
+ "field": "LabelId",
3649
+ "populates": "Label.id",
3650
+ "filterable": true
3651
+ },
3652
+ {
3653
+ "field": "LabelName",
3654
+ "populates": "Label.name",
3655
+ "filterable": true
3656
+ },
3657
+ {
3658
+ "field": "LabelStatus",
3659
+ "populates": "Label.status",
3660
+ "filterable": true
3661
+ }
3662
+ ]
3663
+ },
3664
+ "location_criteria": {
3665
+ "get": [
3666
+ {
3667
+ "field": "CanonicalName",
3668
+ "populates": "LocationCriterion.canonicalName",
3669
+ "filterable": false
3670
+ },
3671
+ {
3672
+ "field": "Reach",
3673
+ "populates": "LocationCriterion.reach",
3674
+ "filterable": false
3675
+ }
3676
+ ]
3677
+ },
3678
+ "managed_customers": {
3679
+ "get": [
3680
+ {
3681
+ "field": "AccountLabels",
3682
+ "populates": "ManagedCustomer.accountLabels",
3683
+ "filterable": true
3684
+ },
3685
+ {
3686
+ "field": "CanManageClients",
3687
+ "populates": "ManagedCustomer.canManageClients",
3688
+ "filterable": true
3689
+ },
3690
+ {
3691
+ "field": "CurrencyCode",
3692
+ "populates": "ManagedCustomer.currencyCode",
3693
+ "filterable": true
3694
+ },
3695
+ {
3696
+ "field": "CustomerId",
3697
+ "populates": "ManagedCustomer.customerId",
3698
+ "filterable": true
3699
+ },
3700
+ {
3701
+ "field": "DateTimeZone",
3702
+ "populates": "ManagedCustomer.dateTimeZone",
3703
+ "filterable": true
3704
+ },
3705
+ {
3706
+ "field": "Name",
3707
+ "populates": "ManagedCustomer.name",
3708
+ "filterable": true
3709
+ },
3710
+ {
3711
+ "field": "TestAccount",
3712
+ "populates": "ManagedCustomer.testAccount",
3713
+ "filterable": false
3714
+ }
3715
+ ]
3716
+ },
3717
+ "media": {
3718
+ "get": [
3719
+ {
3720
+ "field": "AdvertisingId",
3721
+ "populates": "Video.advertisingId",
3722
+ "filterable": true
3723
+ },
3724
+ {
3725
+ "field": "CreationTime",
3726
+ "populates": "Media.creationTime",
3727
+ "filterable": true
3728
+ },
3729
+ {
3730
+ "field": "Dimensions",
3731
+ "populates": "Media.dimensions",
3732
+ "filterable": false
3733
+ },
3734
+ {
3735
+ "field": "DurationMillis",
3736
+ "populates": "Audio.durationMillis",
3737
+ "filterable": true
3738
+ },
3739
+ {
3740
+ "field": "DurationMillis",
3741
+ "populates": "Video.durationMillis",
3742
+ "filterable": true
3743
+ },
3744
+ {
3745
+ "field": "FileSize",
3746
+ "populates": "Media.fileSize",
3747
+ "filterable": true
3748
+ },
3749
+ {
3750
+ "field": "IndustryStandardCommercialIdentifier",
3751
+ "populates": "Video.industryStandardCommercialIdentifier",
3752
+ "filterable": true
3753
+ },
3754
+ {
3755
+ "field": "MediaId",
3756
+ "populates": "Media.mediaId",
3757
+ "filterable": true
3758
+ },
3759
+ {
3760
+ "field": "MimeType",
3761
+ "populates": "Media.mimeType",
3762
+ "filterable": true
3763
+ },
3764
+ {
3765
+ "field": "Name",
3766
+ "populates": "Media.name",
3767
+ "filterable": true
3768
+ },
3769
+ {
3770
+ "field": "ReadyToPlayOnTheWeb",
3771
+ "populates": "Audio.readyToPlayOnTheWeb",
3772
+ "filterable": false
3773
+ },
3774
+ {
3775
+ "field": "ReadyToPlayOnTheWeb",
3776
+ "populates": "Video.readyToPlayOnTheWeb",
3777
+ "filterable": false
3778
+ },
3779
+ {
3780
+ "field": "ReferenceId",
3781
+ "populates": "Media.referenceId",
3782
+ "filterable": true
3783
+ },
3784
+ {
3785
+ "field": "SourceUrl",
3786
+ "populates": "Media.sourceUrl",
3787
+ "filterable": true
3788
+ },
3789
+ {
3790
+ "field": "StreamingUrl",
3791
+ "populates": "Audio.streamingUrl",
3792
+ "filterable": false
3793
+ },
3794
+ {
3795
+ "field": "StreamingUrl",
3796
+ "populates": "Video.streamingUrl",
3797
+ "filterable": false
3798
+ },
3799
+ {
3800
+ "field": "Type",
3801
+ "populates": "Media.type",
3802
+ "filterable": true
3803
+ },
3804
+ {
3805
+ "field": "Urls",
3806
+ "populates": "Media.urls",
3807
+ "filterable": false
3808
+ },
3809
+ {
3810
+ "field": "YouTubeVideoIdString",
3811
+ "populates": "Video.youTubeVideoIdString",
3812
+ "filterable": true
3813
+ }
3814
+ ]
3815
+ },
3816
+ "offline_data_uploads": {
3817
+ "get": [
3818
+ {
3819
+ "field": "ExternalUploadId",
3820
+ "populates": "OfflineDataUpload.externalUploadId",
3821
+ "filterable": true
3822
+ },
3823
+ {
3824
+ "field": "FailureReason",
3825
+ "populates": "OfflineDataUpload.failureReason",
3826
+ "filterable": true
3827
+ },
3828
+ {
3829
+ "field": "UploadStatus",
3830
+ "populates": "OfflineDataUpload.uploadStatus",
3831
+ "filterable": true
3832
+ }
3833
+ ]
3834
+ },
3835
+ "shared_criteria": {
3836
+ "get": [
3837
+ {
3838
+ "field": "AppId",
3839
+ "populates": "MobileApplication.appId",
3840
+ "filterable": true
3841
+ },
3842
+ {
3843
+ "field": "ChannelId",
3844
+ "populates": "YouTubeChannel.channelId",
3845
+ "filterable": false
3846
+ },
3847
+ {
3848
+ "field": "ChannelName",
3849
+ "populates": "YouTubeChannel.channelName",
3850
+ "filterable": false
3851
+ },
3852
+ {
3853
+ "field": "CriteriaType",
3854
+ "populates": "Criterion.type",
3855
+ "filterable": true
3856
+ },
3857
+ {
3858
+ "field": "DisplayName",
3859
+ "populates": "MobileApplication.displayName",
3860
+ "filterable": true
3861
+ },
3862
+ {
3863
+ "field": "Id",
3864
+ "populates": "Criterion.id",
3865
+ "filterable": true
3866
+ },
3867
+ {
3868
+ "field": "KeywordMatchType",
3869
+ "populates": "Keyword.matchType",
3870
+ "filterable": true
3871
+ },
3872
+ {
3873
+ "field": "KeywordText",
3874
+ "populates": "Keyword.text",
3875
+ "filterable": true
3876
+ },
3877
+ {
3878
+ "field": "Negative",
3879
+ "populates": "SharedCriterion.negative",
3880
+ "filterable": true
3881
+ },
3882
+ {
3883
+ "field": "PlacementUrl",
3884
+ "populates": "Placement.url",
3885
+ "filterable": true
3886
+ },
3887
+ {
3888
+ "field": "SharedSetId",
3889
+ "populates": "SharedCriterion.sharedSetId",
3890
+ "filterable": true
3891
+ },
3892
+ {
3893
+ "field": "VideoId",
3894
+ "populates": "YouTubeVideo.videoId",
3895
+ "filterable": false
3896
+ },
3897
+ {
3898
+ "field": "VideoName",
3899
+ "populates": "YouTubeVideo.videoName",
3900
+ "filterable": false
3901
+ }
3902
+ ]
3903
+ },
3904
+ "shared_sets": {
3905
+ "get": [
3906
+ {
3907
+ "field": "MemberCount",
3908
+ "populates": "SharedSet.memberCount",
3909
+ "filterable": false
3910
+ },
3911
+ {
3912
+ "field": "Name",
3913
+ "populates": "SharedSet.name",
3914
+ "filterable": true
3915
+ },
3916
+ {
3917
+ "field": "ReferenceCount",
3918
+ "populates": "SharedSet.referenceCount",
3919
+ "filterable": false
3920
+ },
3921
+ {
3922
+ "field": "SharedSetId",
3923
+ "populates": "SharedSet.sharedSetId",
3924
+ "filterable": true
3925
+ },
3926
+ {
3927
+ "field": "Status",
3928
+ "populates": "SharedSet.status",
3929
+ "filterable": true
3930
+ },
3931
+ {
3932
+ "field": "Type",
3933
+ "populates": "SharedSet.type",
3934
+ "filterable": true
3935
+ }
3936
+ ]
3937
+ },
3938
+ "trial_async_errors": {
3939
+ "get": [
3940
+ {
3941
+ "field": "AsyncError",
3942
+ "populates": "TrialAsyncError.asyncError",
3943
+ "filterable": false
3944
+ },
3945
+ {
3946
+ "field": "BaseAdGroupId",
3947
+ "populates": "TrialAsyncError.baseAdGroupId",
3948
+ "filterable": false
3949
+ },
3950
+ {
3951
+ "field": "BaseCampaignId",
3952
+ "populates": "TrialAsyncError.baseCampaignId",
3953
+ "filterable": false
3954
+ },
3955
+ {
3956
+ "field": "TrialAdGroupId",
3957
+ "populates": "TrialAsyncError.trialAdGroupId",
3958
+ "filterable": false
3959
+ },
3960
+ {
3961
+ "field": "TrialCampaignId",
3962
+ "populates": "TrialAsyncError.trialCampaignId",
3963
+ "filterable": false
3964
+ },
3965
+ {
3966
+ "field": "TrialId",
3967
+ "populates": "TrialAsyncError.trialId",
3968
+ "filterable": true
3969
+ }
3970
+ ]
3971
+ },
3972
+ "trials": {
3973
+ "get": [
3974
+ {
3975
+ "field": "BaseCampaignId",
3976
+ "populates": "Trial.baseCampaignId",
3977
+ "filterable": true
3978
+ },
3979
+ {
3980
+ "field": "DraftId",
3981
+ "populates": "Trial.draftId",
3982
+ "filterable": true
3983
+ },
3984
+ {
3985
+ "field": "EndDate",
3986
+ "populates": "Trial.endDate",
3987
+ "filterable": true
3988
+ },
3989
+ {
3990
+ "field": "Id",
3991
+ "populates": "Trial.id",
3992
+ "filterable": true
3993
+ },
3994
+ {
3995
+ "field": "Name",
3996
+ "populates": "Trial.name",
3997
+ "filterable": true
3998
+ },
3999
+ {
4000
+ "field": "StartDate",
4001
+ "populates": "Trial.startDate",
4002
+ "filterable": true
4003
+ },
4004
+ {
4005
+ "field": "Status",
4006
+ "populates": "Trial.status",
4007
+ "filterable": true
4008
+ },
4009
+ {
4010
+ "field": "TrafficSplitPercent",
4011
+ "populates": "Trial.trafficSplitPercent",
4012
+ "filterable": true
4013
+ },
4014
+ {
4015
+ "field": "TrafficSplitType",
4016
+ "populates": "Trial.trafficSplitType",
4017
+ "filterable": true
4018
+ },
4019
+ {
4020
+ "field": "TrialCampaignId",
4021
+ "populates": "Trial.trialCampaignId",
4022
+ "filterable": true
4023
+ }
4024
+ ]
4025
+ }
4026
+ }