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