soapy_bing 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/Gemfile +1 -0
  4. data/README.md +18 -18
  5. data/Rakefile +1 -0
  6. data/lib/soapy_bing.rb +5 -1
  7. data/lib/soapy_bing/account.rb +1 -0
  8. data/lib/soapy_bing/accounts.rb +13 -17
  9. data/lib/soapy_bing/ads.rb +18 -41
  10. data/lib/soapy_bing/ads/campaign_performance_report.rb +49 -0
  11. data/lib/soapy_bing/ads/campaigns.rb +106 -0
  12. data/lib/soapy_bing/ads/parsers/bulk_csv_parser.rb +34 -0
  13. data/lib/soapy_bing/ads/parsers/report_csv_parser.rb +45 -0
  14. data/lib/soapy_bing/ads/report.rb +93 -0
  15. data/lib/soapy_bing/campaign_management.rb +21 -0
  16. data/lib/soapy_bing/country_codes.rb +17 -0
  17. data/lib/soapy_bing/country_codes.yml +727 -0
  18. data/lib/soapy_bing/customer.rb +1 -0
  19. data/lib/soapy_bing/helpers.rb +1 -1
  20. data/lib/soapy_bing/helpers/zip_downloader.rb +1 -0
  21. data/lib/soapy_bing/oauth_credentials.rb +1 -0
  22. data/lib/soapy_bing/param_guard.rb +1 -0
  23. data/lib/soapy_bing/service.rb +69 -0
  24. data/lib/soapy_bing/service_operation.rb +62 -0
  25. data/lib/soapy_bing/version.rb +2 -1
  26. data/lib/soapy_bing/wsdl/ad_insight.wsdl +1 -0
  27. data/lib/soapy_bing/wsdl/bulk.wsdl +1 -0
  28. data/lib/soapy_bing/wsdl/campaign_management.wsdl +1 -0
  29. data/lib/soapy_bing/wsdl/customer_billing.wsdl +1 -0
  30. data/lib/soapy_bing/wsdl/customer_management.wsdl +1 -0
  31. data/lib/soapy_bing/wsdl/reporting.wsdl +1 -0
  32. data/lib/tasks/console.rake +1 -0
  33. data/lib/tasks/coverage.rake +1 -0
  34. data/lib/tasks/spec.rake +1 -0
  35. data/lib/tasks/upate_wsdl_files.rake +23 -0
  36. data/lib/tasks/update_country_codes.rake +24 -0
  37. data/soapy_bing.gemspec +2 -1
  38. data/spec/fixtures/ads/campaign_performance_report.csv +37 -0
  39. data/spec/fixtures/ads/campaign_performance_report.json +170 -0
  40. data/spec/fixtures/ads/campaigns_by_account_id.csv +7 -0
  41. data/spec/fixtures/{bulk/campaigns.json → ads/campaigns_by_account_id.json} +496 -240
  42. data/spec/fixtures/ads/campaigns_by_campaign_ids.csv +5 -0
  43. data/spec/fixtures/ads/campaigns_by_campaign_ids.json +910 -0
  44. data/spec/fixtures/vcr_cassettes/SoapyBing_Accounts/_list/returns_a_list_of_SoapyBing_Account_objects.yml +27 -27
  45. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_account_id/returns_parsed_rows.yml +301 -0
  46. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_campaign_ids/returns_parsed_rows.yml +300 -0
  47. data/spec/fixtures/vcr_cassettes/SoapyBing_CampaignManagement/_get_geo_locations/returns_a_list_of_geo_locations_hashes.yml +154 -0
  48. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_pending_status.yml +65 -94
  49. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_empty_response.yml +511 -0
  50. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_response.yml +384 -0
  51. data/spec/integration/soapy_bing/accounts_spec.rb +1 -0
  52. data/spec/integration/soapy_bing/ads_campaigns_spec.rb +85 -0
  53. data/spec/integration/soapy_bing/campaign_management_spec.rb +22 -0
  54. data/spec/integration/soapy_bing/oauth_credentials_spec.rb +1 -0
  55. data/spec/simplecov_setup.rb +1 -0
  56. data/spec/soapy_bing/account_spec.rb +6 -2
  57. data/spec/soapy_bing/accounts_spec.rb +47 -0
  58. data/spec/soapy_bing/ads/campaign_performance_report_spec.rb +79 -0
  59. data/spec/soapy_bing/ads/campaigns_spec.rb +99 -0
  60. data/spec/soapy_bing/ads/{bulk/parsers/csv_parser_spec.rb → parsers/bulk_csv_parser_spec.rb} +5 -4
  61. data/spec/soapy_bing/ads/{reports/parsers/csv_parser_spec.rb → parsers/report_csv_parser_spec.rb} +6 -4
  62. data/spec/soapy_bing/country_codes_spec.rb +39 -0
  63. data/spec/soapy_bing/helpers/zip_downloader_spec.rb +2 -0
  64. data/spec/soapy_bing/oauth_credentials_spec.rb +6 -2
  65. data/spec/soapy_bing/param_guard_spec.rb +2 -0
  66. data/spec/soapy_bing/service_spec.rb +56 -0
  67. data/spec/spec_helper.rb +1 -0
  68. data/spec/support/dotenv.rb +1 -0
  69. data/spec/support/vcr.rb +75 -6
  70. metadata +74 -118
  71. data/lib/soapy_bing/ads/bulk.rb +0 -3
  72. data/lib/soapy_bing/ads/bulk/campaigns.rb +0 -65
  73. data/lib/soapy_bing/ads/bulk/parsers.rb +0 -2
  74. data/lib/soapy_bing/ads/bulk/parsers/csv_parser.rb +0 -35
  75. data/lib/soapy_bing/ads/reports.rb +0 -4
  76. data/lib/soapy_bing/ads/reports/base.rb +0 -74
  77. data/lib/soapy_bing/ads/reports/campaign_performance_report.rb +0 -24
  78. data/lib/soapy_bing/ads/reports/parsers.rb +0 -2
  79. data/lib/soapy_bing/ads/reports/parsers/csv_parser.rb +0 -46
  80. data/lib/soapy_bing/helpers/class_name.rb +0 -10
  81. data/lib/soapy_bing/soap.rb +0 -4
  82. data/lib/soapy_bing/soap/request.rb +0 -10
  83. data/lib/soapy_bing/soap/request/base.rb +0 -38
  84. data/lib/soapy_bing/soap/request/download_campaigns_by_account_ids_request.rb +0 -17
  85. data/lib/soapy_bing/soap/request/get_accounts_info_request.rb +0 -17
  86. data/lib/soapy_bing/soap/request/get_ad_groups_by_campaign_id_request.rb +0 -17
  87. data/lib/soapy_bing/soap/request/get_ads_by_ad_group_id_request.rb +0 -17
  88. data/lib/soapy_bing/soap/request/get_bulk_download_status_request.rb +0 -17
  89. data/lib/soapy_bing/soap/request/get_targets_by_campaign_ids_request.rb +0 -17
  90. data/lib/soapy_bing/soap/request/poll_generate_report_request.rb +0 -34
  91. data/lib/soapy_bing/soap/request/submit_generate_report_request.rb +0 -17
  92. data/lib/soapy_bing/soap/response.rb +0 -14
  93. data/lib/soapy_bing/soap/response/base.rb +0 -17
  94. data/lib/soapy_bing/soap/response/download_campaigns_by_account_ids_response.rb +0 -12
  95. data/lib/soapy_bing/soap/response/get_accounts_info_response.rb +0 -12
  96. data/lib/soapy_bing/soap/response/get_ad_groups_by_campaign_id_response.rb +0 -12
  97. data/lib/soapy_bing/soap/response/get_ads_by_ad_group_id_response.rb +0 -12
  98. data/lib/soapy_bing/soap/response/get_bulk_download_status_response.rb +0 -17
  99. data/lib/soapy_bing/soap/response/get_targets_by_campaign_ids_response.rb +0 -12
  100. data/lib/soapy_bing/soap/response/payload.rb +0 -28
  101. data/lib/soapy_bing/soap/response/poll_generate_report_response.rb +0 -14
  102. data/lib/soapy_bing/soap/response/report_status.rb +0 -34
  103. data/lib/soapy_bing/soap/response/submit_generate_report_response.rb +0 -12
  104. data/lib/soapy_bing/soap/template_renderer.rb +0 -22
  105. data/lib/soapy_bing/soap/templates/download_campaigns_by_account_ids.xml.erb +0 -22
  106. data/lib/soapy_bing/soap/templates/get_accounts_info.xml.erb +0 -12
  107. data/lib/soapy_bing/soap/templates/get_ad_groups_by_campaign_id.xml.erb +0 -15
  108. data/lib/soapy_bing/soap/templates/get_ads_by_ad_group_id.xml.erb +0 -15
  109. data/lib/soapy_bing/soap/templates/get_bulk_download_status.xml.erb +0 -15
  110. data/lib/soapy_bing/soap/templates/get_targets_by_campaign_ids.xml.erb +0 -20
  111. data/lib/soapy_bing/soap/templates/poll_generate_report.xml.erb +0 -18
  112. data/lib/soapy_bing/soap/templates/submit_generate_report.xml.erb +0 -46
  113. data/spec/fixtures/bulk/campaigns.csv +0 -8
  114. data/spec/fixtures/get_ad_groups_by_campaign_id.json +0 -587
  115. data/spec/fixtures/get_ads_by_ad_group_id.json +0 -218
  116. data/spec/fixtures/get_targets_by_campaign_ids.json +0 -81
  117. data/spec/fixtures/reports/campaign_performance_report.csv +0 -37
  118. data/spec/fixtures/reports/campaign_performance_report.json +0 -146
  119. data/spec/fixtures/soap_templates/simple.xml.erb +0 -2
  120. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ad_groups_by_campaign_id/1_1_1.yml +0 -150
  121. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ads_by_ad_group_id/1_2_1.yml +0 -141
  122. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_targets_by_campaign_ids/1_3_1.yml +0 -111
  123. data/spec/fixtures/vcr_cassettes/SoapyBing_Ads_Bulk_Campaigns/_result_file_url/returns_result_file_url.yml +0 -216
  124. data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_status.yml +0 -284
  125. data/spec/integration/soapy_bing/ads/bulk/campaigns_spec.rb +0 -35
  126. data/spec/integration/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -40
  127. data/spec/integration/soapy_bing/ads_spec.rb +0 -32
  128. data/spec/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -42
  129. data/spec/soapy_bing/ads_spec.rb +0 -33
  130. data/spec/soapy_bing/helpers/class_name_spec.rb +0 -15
  131. data/spec/soapy_bing/soap/request/base_spec.rb +0 -55
  132. data/spec/soapy_bing/soap/request/poll_generate_report_request_spec.rb +0 -60
  133. data/spec/soapy_bing/soap/response/base_spec.rb +0 -13
  134. data/spec/soapy_bing/soap/response/get_bulk_download_status_response_spec.rb +0 -60
  135. data/spec/soapy_bing/soap/response/payload_spec.rb +0 -48
  136. data/spec/soapy_bing/soap/response/poll_generate_report_response_spec.rb +0 -26
  137. data/spec/soapy_bing/soap/response/report_status_spec.rb +0 -92
  138. data/spec/soapy_bing/soap/response/submit_generate_report_response_spec.rb +0 -20
  139. data/spec/soapy_bing/soap/template_renderer_spec.rb +0 -25
@@ -0,0 +1,5 @@
1
+ Type,Status,Id,Parent Id,Sub Type,Campaign,Ad Group,Website,Sync Time,Client Id,Modified Time,Tracking Template,Custom Parameter,Final Url,Mobile Final Url,Time Zone,Budget Id,Budget Name,Budget,Budget Type,Bid Strategy Type,Bid Strategy MaxCpc,Bid Strategy TargetCpa,KeywordVariantMatchEnabled,Campaign Type,Priority,LocalInventoryAdsEnabled,Start Date,End Date,Network Distribution,Pricing Model,Ad Rotation,Search Network,Search Bid,Content Network,Content Bid,Language,Title,Text,Display Url,Destination Url,Business Name,Phone Number,Promotion,Editorial Status,Editorial Location,Editorial Term,Editorial Reason Code,Editorial Appeal Status,Device Preference,Ad Format Preference,Title Part 1,Title Part 2,Path 1,Path 2,Keyword,Match Type,Bid,Param1,Param2,Param3,Target,Physical Intent,Bid Adjustment,Radius Target Id,Name,OS Names,Radius,Unit,Business Id,From Hour,From Minute,To Hour,To Minute,Version,Ad Schedule,Use Searcher Time Zone,Sitelink Extension Order,Sitelink Extension Link Text,Sitelink Extension Destination Url,Sitelink Extension Description1,Sitelink Extension Description2,Geo Code Status,Map Icon,Business Icon,Address Line 1,Address Line 2,Postal Code,City,State Or Province Code,Province Name,Latitude,Longitude,Country Code,Call Only,Call Tracking Enabled,Toll Free,Alternative Text,Media Ids,Publisher Countries,Store Id,Product Condition 1,Product Value 1,Product Condition 2,Product Value 2,Product Condition 3,Product Value 3,Product Condition 4,Product Value 4,Product Condition 5,Product Value 5,Product Condition 6,Product Value 6,Product Condition 7,Product Value 7,Callout Text,Action Text,Action Link Url,Price Extension Type,Header 1,Header 2,Header 3,Header 4,Header 5,Header 6,Header 7,Header 8,Price Description 1,Price Description 2,Price Description 3,Price Description 4,Price Description 5,Price Description 6,Price Description 7,Price Description 8,Final Url 1,Final Url 2,Final Url 3,Final Url 4,Final Url 5,Final Url 6,Final Url 7,Final Url 8,Final Mobile Url 1,Final Mobile Url 2,Final Mobile Url 3,Final Mobile Url 4,Final Mobile Url 5,Final Mobile Url 6,Final Mobile Url 7,Final Mobile Url 8,Price 1,Price 2,Price 3,Price 4,Price 5,Price 6,Price 7,Price 8,Currency Code 1,Currency Code 2,Currency Code 3,Currency Code 4,Currency Code 5,Currency Code 6,Currency Code 7,Currency Code 8,Price Unit 1,Price Unit 2,Price Unit 3,Price Unit 4,Price Unit 5,Price Unit 6,Price Unit 7,Price Unit 8,Price Qualifier 1,Price Qualifier 2,Price Qualifier 3,Price Qualifier 4,Price Qualifier 5,Price Qualifier 6,Price Qualifier 7,Price Qualifier 8,Is Exact,Source,Url,Structured Snippet Header,Structured Snippet Values,Spend,Impressions,Clicks,CTR,Avg CPC,Avg CPM,Avg position,Conversions,CPA,Quality Score,Keyword Relevance,Landing Page Relevance,Landing Page User Experience,App Platform,App Id,Tracking Enabled,App Status,Error,Error Number,Field Path,Is Excluded,Parent Criterion Id,Audience,Audience Id,Scope,Membership Duration,UET Tag Id,Description,Remarketing Rule,Remarketing Targeting Setting,Domain Language,Dynamic Ad Target Condition 1,Dynamic Ad Target Condition 2,Dynamic Ad Target Condition 3,Dynamic Ad Target Value 1,Dynamic Ad Target Value 2,Dynamic Ad Target Value 3
2
+ Format Version,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,5.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
3
+ Account,,123456,9042840,,,,,06/22/2017 12:18:58,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
4
+ Campaign,Paused,90868686,123456,,Campaign 90868686,,,,,06/01/2017 13:07:53.727,,,,,GreenwichMeanTimeDublinEdinburghLisbonLondon,,,50,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
5
+ Campaign,Paused,90876598,123456,,Campaign 90876598,,,,,06/01/2017 13:08:05.337,,,,,AmsterdamBerlinBernRomeStockholmVienna,,,100,DailyBudgetStandard,ManualCpc,,,,SearchAndContent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
@@ -0,0 +1,910 @@
1
+ [
2
+ {
3
+ "Type": "Format Version",
4
+ "Status": null,
5
+ "Id": null,
6
+ "Parent Id": null,
7
+ "Sub Type": null,
8
+ "Campaign": null,
9
+ "Ad Group": null,
10
+ "Website": null,
11
+ "Sync Time": null,
12
+ "Client Id": null,
13
+ "Modified Time": null,
14
+ "Tracking Template": null,
15
+ "Custom Parameter": null,
16
+ "Final Url": null,
17
+ "Mobile Final Url": null,
18
+ "Time Zone": null,
19
+ "Budget Id": null,
20
+ "Budget Name": null,
21
+ "Budget": null,
22
+ "Budget Type": null,
23
+ "Bid Strategy Type": null,
24
+ "Bid Strategy MaxCpc": null,
25
+ "Bid Strategy TargetCpa": null,
26
+ "KeywordVariantMatchEnabled": null,
27
+ "Campaign Type": null,
28
+ "Priority": null,
29
+ "LocalInventoryAdsEnabled": null,
30
+ "Start Date": null,
31
+ "End Date": null,
32
+ "Network Distribution": null,
33
+ "Pricing Model": null,
34
+ "Ad Rotation": null,
35
+ "Search Network": null,
36
+ "Search Bid": null,
37
+ "Content Network": null,
38
+ "Content Bid": null,
39
+ "Language": null,
40
+ "Title": null,
41
+ "Text": null,
42
+ "Display Url": null,
43
+ "Destination Url": null,
44
+ "Business Name": null,
45
+ "Phone Number": null,
46
+ "Promotion": null,
47
+ "Editorial Status": null,
48
+ "Editorial Location": null,
49
+ "Editorial Term": null,
50
+ "Editorial Reason Code": null,
51
+ "Editorial Appeal Status": null,
52
+ "Device Preference": null,
53
+ "Ad Format Preference": null,
54
+ "Title Part 1": null,
55
+ "Title Part 2": null,
56
+ "Path 1": null,
57
+ "Path 2": null,
58
+ "Keyword": null,
59
+ "Match Type": null,
60
+ "Bid": null,
61
+ "Param1": null,
62
+ "Param2": null,
63
+ "Param3": null,
64
+ "Target": null,
65
+ "Physical Intent": null,
66
+ "Bid Adjustment": null,
67
+ "Radius Target Id": null,
68
+ "Name": "5.0",
69
+ "OS Names": null,
70
+ "Radius": null,
71
+ "Unit": null,
72
+ "Business Id": null,
73
+ "From Hour": null,
74
+ "From Minute": null,
75
+ "To Hour": null,
76
+ "To Minute": null,
77
+ "Version": null,
78
+ "Ad Schedule": null,
79
+ "Use Searcher Time Zone": null,
80
+ "Sitelink Extension Order": null,
81
+ "Sitelink Extension Link Text": null,
82
+ "Sitelink Extension Destination Url": null,
83
+ "Sitelink Extension Description1": null,
84
+ "Sitelink Extension Description2": null,
85
+ "Geo Code Status": null,
86
+ "Map Icon": null,
87
+ "Business Icon": null,
88
+ "Address Line 1": null,
89
+ "Address Line 2": null,
90
+ "Postal Code": null,
91
+ "City": null,
92
+ "State Or Province Code": null,
93
+ "Province Name": null,
94
+ "Latitude": null,
95
+ "Longitude": null,
96
+ "Country Code": null,
97
+ "Call Only": null,
98
+ "Call Tracking Enabled": null,
99
+ "Toll Free": null,
100
+ "Alternative Text": null,
101
+ "Media Ids": null,
102
+ "Publisher Countries": null,
103
+ "Store Id": null,
104
+ "Product Condition 1": null,
105
+ "Product Value 1": null,
106
+ "Product Condition 2": null,
107
+ "Product Value 2": null,
108
+ "Product Condition 3": null,
109
+ "Product Value 3": null,
110
+ "Product Condition 4": null,
111
+ "Product Value 4": null,
112
+ "Product Condition 5": null,
113
+ "Product Value 5": null,
114
+ "Product Condition 6": null,
115
+ "Product Value 6": null,
116
+ "Product Condition 7": null,
117
+ "Product Value 7": null,
118
+ "Callout Text": null,
119
+ "Action Text": null,
120
+ "Action Link Url": null,
121
+ "Price Extension Type": null,
122
+ "Header 1": null,
123
+ "Header 2": null,
124
+ "Header 3": null,
125
+ "Header 4": null,
126
+ "Header 5": null,
127
+ "Header 6": null,
128
+ "Header 7": null,
129
+ "Header 8": null,
130
+ "Price Description 1": null,
131
+ "Price Description 2": null,
132
+ "Price Description 3": null,
133
+ "Price Description 4": null,
134
+ "Price Description 5": null,
135
+ "Price Description 6": null,
136
+ "Price Description 7": null,
137
+ "Price Description 8": null,
138
+ "Final Url 1": null,
139
+ "Final Url 2": null,
140
+ "Final Url 3": null,
141
+ "Final Url 4": null,
142
+ "Final Url 5": null,
143
+ "Final Url 6": null,
144
+ "Final Url 7": null,
145
+ "Final Url 8": null,
146
+ "Final Mobile Url 1": null,
147
+ "Final Mobile Url 2": null,
148
+ "Final Mobile Url 3": null,
149
+ "Final Mobile Url 4": null,
150
+ "Final Mobile Url 5": null,
151
+ "Final Mobile Url 6": null,
152
+ "Final Mobile Url 7": null,
153
+ "Final Mobile Url 8": null,
154
+ "Price 1": null,
155
+ "Price 2": null,
156
+ "Price 3": null,
157
+ "Price 4": null,
158
+ "Price 5": null,
159
+ "Price 6": null,
160
+ "Price 7": null,
161
+ "Price 8": null,
162
+ "Currency Code 1": null,
163
+ "Currency Code 2": null,
164
+ "Currency Code 3": null,
165
+ "Currency Code 4": null,
166
+ "Currency Code 5": null,
167
+ "Currency Code 6": null,
168
+ "Currency Code 7": null,
169
+ "Currency Code 8": null,
170
+ "Price Unit 1": null,
171
+ "Price Unit 2": null,
172
+ "Price Unit 3": null,
173
+ "Price Unit 4": null,
174
+ "Price Unit 5": null,
175
+ "Price Unit 6": null,
176
+ "Price Unit 7": null,
177
+ "Price Unit 8": null,
178
+ "Price Qualifier 1": null,
179
+ "Price Qualifier 2": null,
180
+ "Price Qualifier 3": null,
181
+ "Price Qualifier 4": null,
182
+ "Price Qualifier 5": null,
183
+ "Price Qualifier 6": null,
184
+ "Price Qualifier 7": null,
185
+ "Price Qualifier 8": null,
186
+ "Is Exact": null,
187
+ "Source": null,
188
+ "Url": null,
189
+ "Structured Snippet Header": null,
190
+ "Structured Snippet Values": null,
191
+ "Spend": null,
192
+ "Impressions": null,
193
+ "Clicks": null,
194
+ "CTR": null,
195
+ "Avg CPC": null,
196
+ "Avg CPM": null,
197
+ "Avg position": null,
198
+ "Conversions": null,
199
+ "CPA": null,
200
+ "Quality Score": null,
201
+ "Keyword Relevance": null,
202
+ "Landing Page Relevance": null,
203
+ "Landing Page User Experience": null,
204
+ "App Platform": null,
205
+ "App Id": null,
206
+ "Tracking Enabled": null,
207
+ "App Status": null,
208
+ "Error": null,
209
+ "Error Number": null,
210
+ "Field Path": null,
211
+ "Is Excluded": null,
212
+ "Parent Criterion Id": null,
213
+ "Audience": null,
214
+ "Audience Id": null,
215
+ "Scope": null,
216
+ "Membership Duration": null,
217
+ "UET Tag Id": null,
218
+ "Description": null,
219
+ "Remarketing Rule": null,
220
+ "Remarketing Targeting Setting": null,
221
+ "Domain Language": null,
222
+ "Dynamic Ad Target Condition 1": null,
223
+ "Dynamic Ad Target Condition 2": null,
224
+ "Dynamic Ad Target Condition 3": null,
225
+ "Dynamic Ad Target Value 1": null,
226
+ "Dynamic Ad Target Value 2": null,
227
+ "Dynamic Ad Target Value 3": null
228
+ },
229
+ {
230
+ "Type": "Account",
231
+ "Status": null,
232
+ "Id": "123456",
233
+ "Parent Id": "9042840",
234
+ "Sub Type": null,
235
+ "Campaign": null,
236
+ "Ad Group": null,
237
+ "Website": null,
238
+ "Sync Time": "06/22/2017 12:18:58",
239
+ "Client Id": null,
240
+ "Modified Time": null,
241
+ "Tracking Template": null,
242
+ "Custom Parameter": null,
243
+ "Final Url": null,
244
+ "Mobile Final Url": null,
245
+ "Time Zone": null,
246
+ "Budget Id": null,
247
+ "Budget Name": null,
248
+ "Budget": null,
249
+ "Budget Type": null,
250
+ "Bid Strategy Type": null,
251
+ "Bid Strategy MaxCpc": null,
252
+ "Bid Strategy TargetCpa": null,
253
+ "KeywordVariantMatchEnabled": null,
254
+ "Campaign Type": null,
255
+ "Priority": null,
256
+ "LocalInventoryAdsEnabled": null,
257
+ "Start Date": null,
258
+ "End Date": null,
259
+ "Network Distribution": null,
260
+ "Pricing Model": null,
261
+ "Ad Rotation": null,
262
+ "Search Network": null,
263
+ "Search Bid": null,
264
+ "Content Network": null,
265
+ "Content Bid": null,
266
+ "Language": null,
267
+ "Title": null,
268
+ "Text": null,
269
+ "Display Url": null,
270
+ "Destination Url": null,
271
+ "Business Name": null,
272
+ "Phone Number": null,
273
+ "Promotion": null,
274
+ "Editorial Status": null,
275
+ "Editorial Location": null,
276
+ "Editorial Term": null,
277
+ "Editorial Reason Code": null,
278
+ "Editorial Appeal Status": null,
279
+ "Device Preference": null,
280
+ "Ad Format Preference": null,
281
+ "Title Part 1": null,
282
+ "Title Part 2": null,
283
+ "Path 1": null,
284
+ "Path 2": null,
285
+ "Keyword": null,
286
+ "Match Type": null,
287
+ "Bid": null,
288
+ "Param1": null,
289
+ "Param2": null,
290
+ "Param3": null,
291
+ "Target": null,
292
+ "Physical Intent": null,
293
+ "Bid Adjustment": null,
294
+ "Radius Target Id": null,
295
+ "Name": null,
296
+ "OS Names": null,
297
+ "Radius": null,
298
+ "Unit": null,
299
+ "Business Id": null,
300
+ "From Hour": null,
301
+ "From Minute": null,
302
+ "To Hour": null,
303
+ "To Minute": null,
304
+ "Version": null,
305
+ "Ad Schedule": null,
306
+ "Use Searcher Time Zone": null,
307
+ "Sitelink Extension Order": null,
308
+ "Sitelink Extension Link Text": null,
309
+ "Sitelink Extension Destination Url": null,
310
+ "Sitelink Extension Description1": null,
311
+ "Sitelink Extension Description2": null,
312
+ "Geo Code Status": null,
313
+ "Map Icon": null,
314
+ "Business Icon": null,
315
+ "Address Line 1": null,
316
+ "Address Line 2": null,
317
+ "Postal Code": null,
318
+ "City": null,
319
+ "State Or Province Code": null,
320
+ "Province Name": null,
321
+ "Latitude": null,
322
+ "Longitude": null,
323
+ "Country Code": null,
324
+ "Call Only": null,
325
+ "Call Tracking Enabled": null,
326
+ "Toll Free": null,
327
+ "Alternative Text": null,
328
+ "Media Ids": null,
329
+ "Publisher Countries": null,
330
+ "Store Id": null,
331
+ "Product Condition 1": null,
332
+ "Product Value 1": null,
333
+ "Product Condition 2": null,
334
+ "Product Value 2": null,
335
+ "Product Condition 3": null,
336
+ "Product Value 3": null,
337
+ "Product Condition 4": null,
338
+ "Product Value 4": null,
339
+ "Product Condition 5": null,
340
+ "Product Value 5": null,
341
+ "Product Condition 6": null,
342
+ "Product Value 6": null,
343
+ "Product Condition 7": null,
344
+ "Product Value 7": null,
345
+ "Callout Text": null,
346
+ "Action Text": null,
347
+ "Action Link Url": null,
348
+ "Price Extension Type": null,
349
+ "Header 1": null,
350
+ "Header 2": null,
351
+ "Header 3": null,
352
+ "Header 4": null,
353
+ "Header 5": null,
354
+ "Header 6": null,
355
+ "Header 7": null,
356
+ "Header 8": null,
357
+ "Price Description 1": null,
358
+ "Price Description 2": null,
359
+ "Price Description 3": null,
360
+ "Price Description 4": null,
361
+ "Price Description 5": null,
362
+ "Price Description 6": null,
363
+ "Price Description 7": null,
364
+ "Price Description 8": null,
365
+ "Final Url 1": null,
366
+ "Final Url 2": null,
367
+ "Final Url 3": null,
368
+ "Final Url 4": null,
369
+ "Final Url 5": null,
370
+ "Final Url 6": null,
371
+ "Final Url 7": null,
372
+ "Final Url 8": null,
373
+ "Final Mobile Url 1": null,
374
+ "Final Mobile Url 2": null,
375
+ "Final Mobile Url 3": null,
376
+ "Final Mobile Url 4": null,
377
+ "Final Mobile Url 5": null,
378
+ "Final Mobile Url 6": null,
379
+ "Final Mobile Url 7": null,
380
+ "Final Mobile Url 8": null,
381
+ "Price 1": null,
382
+ "Price 2": null,
383
+ "Price 3": null,
384
+ "Price 4": null,
385
+ "Price 5": null,
386
+ "Price 6": null,
387
+ "Price 7": null,
388
+ "Price 8": null,
389
+ "Currency Code 1": null,
390
+ "Currency Code 2": null,
391
+ "Currency Code 3": null,
392
+ "Currency Code 4": null,
393
+ "Currency Code 5": null,
394
+ "Currency Code 6": null,
395
+ "Currency Code 7": null,
396
+ "Currency Code 8": null,
397
+ "Price Unit 1": null,
398
+ "Price Unit 2": null,
399
+ "Price Unit 3": null,
400
+ "Price Unit 4": null,
401
+ "Price Unit 5": null,
402
+ "Price Unit 6": null,
403
+ "Price Unit 7": null,
404
+ "Price Unit 8": null,
405
+ "Price Qualifier 1": null,
406
+ "Price Qualifier 2": null,
407
+ "Price Qualifier 3": null,
408
+ "Price Qualifier 4": null,
409
+ "Price Qualifier 5": null,
410
+ "Price Qualifier 6": null,
411
+ "Price Qualifier 7": null,
412
+ "Price Qualifier 8": null,
413
+ "Is Exact": null,
414
+ "Source": null,
415
+ "Url": null,
416
+ "Structured Snippet Header": null,
417
+ "Structured Snippet Values": null,
418
+ "Spend": null,
419
+ "Impressions": null,
420
+ "Clicks": null,
421
+ "CTR": null,
422
+ "Avg CPC": null,
423
+ "Avg CPM": null,
424
+ "Avg position": null,
425
+ "Conversions": null,
426
+ "CPA": null,
427
+ "Quality Score": null,
428
+ "Keyword Relevance": null,
429
+ "Landing Page Relevance": null,
430
+ "Landing Page User Experience": null,
431
+ "App Platform": null,
432
+ "App Id": null,
433
+ "Tracking Enabled": null,
434
+ "App Status": null,
435
+ "Error": null,
436
+ "Error Number": null,
437
+ "Field Path": null,
438
+ "Is Excluded": null,
439
+ "Parent Criterion Id": null,
440
+ "Audience": null,
441
+ "Audience Id": null,
442
+ "Scope": null,
443
+ "Membership Duration": null,
444
+ "UET Tag Id": null,
445
+ "Description": null,
446
+ "Remarketing Rule": null,
447
+ "Remarketing Targeting Setting": null,
448
+ "Domain Language": null,
449
+ "Dynamic Ad Target Condition 1": null,
450
+ "Dynamic Ad Target Condition 2": null,
451
+ "Dynamic Ad Target Condition 3": null,
452
+ "Dynamic Ad Target Value 1": null,
453
+ "Dynamic Ad Target Value 2": null,
454
+ "Dynamic Ad Target Value 3": null
455
+ },
456
+ {
457
+ "Type": "Campaign",
458
+ "Status": "Paused",
459
+ "Id": "90868686",
460
+ "Parent Id": "123456",
461
+ "Sub Type": null,
462
+ "Campaign": "Campaign 90868686",
463
+ "Ad Group": null,
464
+ "Website": null,
465
+ "Sync Time": null,
466
+ "Client Id": null,
467
+ "Modified Time": "06/01/2017 13:07:53.727",
468
+ "Tracking Template": null,
469
+ "Custom Parameter": null,
470
+ "Final Url": null,
471
+ "Mobile Final Url": null,
472
+ "Time Zone": "GreenwichMeanTimeDublinEdinburghLisbonLondon",
473
+ "Budget Id": null,
474
+ "Budget Name": null,
475
+ "Budget": "50",
476
+ "Budget Type": "DailyBudgetStandard",
477
+ "Bid Strategy Type": "ManualCpc",
478
+ "Bid Strategy MaxCpc": null,
479
+ "Bid Strategy TargetCpa": null,
480
+ "KeywordVariantMatchEnabled": null,
481
+ "Campaign Type": "SearchAndContent",
482
+ "Priority": null,
483
+ "LocalInventoryAdsEnabled": null,
484
+ "Start Date": null,
485
+ "End Date": null,
486
+ "Network Distribution": null,
487
+ "Pricing Model": null,
488
+ "Ad Rotation": null,
489
+ "Search Network": null,
490
+ "Search Bid": null,
491
+ "Content Network": null,
492
+ "Content Bid": null,
493
+ "Language": null,
494
+ "Title": null,
495
+ "Text": null,
496
+ "Display Url": null,
497
+ "Destination Url": null,
498
+ "Business Name": null,
499
+ "Phone Number": null,
500
+ "Promotion": null,
501
+ "Editorial Status": null,
502
+ "Editorial Location": null,
503
+ "Editorial Term": null,
504
+ "Editorial Reason Code": null,
505
+ "Editorial Appeal Status": null,
506
+ "Device Preference": null,
507
+ "Ad Format Preference": null,
508
+ "Title Part 1": null,
509
+ "Title Part 2": null,
510
+ "Path 1": null,
511
+ "Path 2": null,
512
+ "Keyword": null,
513
+ "Match Type": null,
514
+ "Bid": null,
515
+ "Param1": null,
516
+ "Param2": null,
517
+ "Param3": null,
518
+ "Target": null,
519
+ "Physical Intent": null,
520
+ "Bid Adjustment": null,
521
+ "Radius Target Id": null,
522
+ "Name": null,
523
+ "OS Names": null,
524
+ "Radius": null,
525
+ "Unit": null,
526
+ "Business Id": null,
527
+ "From Hour": null,
528
+ "From Minute": null,
529
+ "To Hour": null,
530
+ "To Minute": null,
531
+ "Version": null,
532
+ "Ad Schedule": null,
533
+ "Use Searcher Time Zone": null,
534
+ "Sitelink Extension Order": null,
535
+ "Sitelink Extension Link Text": null,
536
+ "Sitelink Extension Destination Url": null,
537
+ "Sitelink Extension Description1": null,
538
+ "Sitelink Extension Description2": null,
539
+ "Geo Code Status": null,
540
+ "Map Icon": null,
541
+ "Business Icon": null,
542
+ "Address Line 1": null,
543
+ "Address Line 2": null,
544
+ "Postal Code": null,
545
+ "City": null,
546
+ "State Or Province Code": null,
547
+ "Province Name": null,
548
+ "Latitude": null,
549
+ "Longitude": null,
550
+ "Country Code": null,
551
+ "Call Only": null,
552
+ "Call Tracking Enabled": null,
553
+ "Toll Free": null,
554
+ "Alternative Text": null,
555
+ "Media Ids": null,
556
+ "Publisher Countries": null,
557
+ "Store Id": null,
558
+ "Product Condition 1": null,
559
+ "Product Value 1": null,
560
+ "Product Condition 2": null,
561
+ "Product Value 2": null,
562
+ "Product Condition 3": null,
563
+ "Product Value 3": null,
564
+ "Product Condition 4": null,
565
+ "Product Value 4": null,
566
+ "Product Condition 5": null,
567
+ "Product Value 5": null,
568
+ "Product Condition 6": null,
569
+ "Product Value 6": null,
570
+ "Product Condition 7": null,
571
+ "Product Value 7": null,
572
+ "Callout Text": null,
573
+ "Action Text": null,
574
+ "Action Link Url": null,
575
+ "Price Extension Type": null,
576
+ "Header 1": null,
577
+ "Header 2": null,
578
+ "Header 3": null,
579
+ "Header 4": null,
580
+ "Header 5": null,
581
+ "Header 6": null,
582
+ "Header 7": null,
583
+ "Header 8": null,
584
+ "Price Description 1": null,
585
+ "Price Description 2": null,
586
+ "Price Description 3": null,
587
+ "Price Description 4": null,
588
+ "Price Description 5": null,
589
+ "Price Description 6": null,
590
+ "Price Description 7": null,
591
+ "Price Description 8": null,
592
+ "Final Url 1": null,
593
+ "Final Url 2": null,
594
+ "Final Url 3": null,
595
+ "Final Url 4": null,
596
+ "Final Url 5": null,
597
+ "Final Url 6": null,
598
+ "Final Url 7": null,
599
+ "Final Url 8": null,
600
+ "Final Mobile Url 1": null,
601
+ "Final Mobile Url 2": null,
602
+ "Final Mobile Url 3": null,
603
+ "Final Mobile Url 4": null,
604
+ "Final Mobile Url 5": null,
605
+ "Final Mobile Url 6": null,
606
+ "Final Mobile Url 7": null,
607
+ "Final Mobile Url 8": null,
608
+ "Price 1": null,
609
+ "Price 2": null,
610
+ "Price 3": null,
611
+ "Price 4": null,
612
+ "Price 5": null,
613
+ "Price 6": null,
614
+ "Price 7": null,
615
+ "Price 8": null,
616
+ "Currency Code 1": null,
617
+ "Currency Code 2": null,
618
+ "Currency Code 3": null,
619
+ "Currency Code 4": null,
620
+ "Currency Code 5": null,
621
+ "Currency Code 6": null,
622
+ "Currency Code 7": null,
623
+ "Currency Code 8": null,
624
+ "Price Unit 1": null,
625
+ "Price Unit 2": null,
626
+ "Price Unit 3": null,
627
+ "Price Unit 4": null,
628
+ "Price Unit 5": null,
629
+ "Price Unit 6": null,
630
+ "Price Unit 7": null,
631
+ "Price Unit 8": null,
632
+ "Price Qualifier 1": null,
633
+ "Price Qualifier 2": null,
634
+ "Price Qualifier 3": null,
635
+ "Price Qualifier 4": null,
636
+ "Price Qualifier 5": null,
637
+ "Price Qualifier 6": null,
638
+ "Price Qualifier 7": null,
639
+ "Price Qualifier 8": null,
640
+ "Is Exact": null,
641
+ "Source": null,
642
+ "Url": null,
643
+ "Structured Snippet Header": null,
644
+ "Structured Snippet Values": null,
645
+ "Spend": null,
646
+ "Impressions": null,
647
+ "Clicks": null,
648
+ "CTR": null,
649
+ "Avg CPC": null,
650
+ "Avg CPM": null,
651
+ "Avg position": null,
652
+ "Conversions": null,
653
+ "CPA": null,
654
+ "Quality Score": null,
655
+ "Keyword Relevance": null,
656
+ "Landing Page Relevance": null,
657
+ "Landing Page User Experience": null,
658
+ "App Platform": null,
659
+ "App Id": null,
660
+ "Tracking Enabled": null,
661
+ "App Status": null,
662
+ "Error": null,
663
+ "Error Number": null,
664
+ "Field Path": null,
665
+ "Is Excluded": null,
666
+ "Parent Criterion Id": null,
667
+ "Audience": null,
668
+ "Audience Id": null,
669
+ "Scope": null,
670
+ "Membership Duration": null,
671
+ "UET Tag Id": null,
672
+ "Description": null,
673
+ "Remarketing Rule": null,
674
+ "Remarketing Targeting Setting": null,
675
+ "Domain Language": null,
676
+ "Dynamic Ad Target Condition 1": null,
677
+ "Dynamic Ad Target Condition 2": null,
678
+ "Dynamic Ad Target Condition 3": null,
679
+ "Dynamic Ad Target Value 1": null,
680
+ "Dynamic Ad Target Value 2": null,
681
+ "Dynamic Ad Target Value 3": null
682
+ },
683
+ {
684
+ "Type": "Campaign",
685
+ "Status": "Paused",
686
+ "Id": "90876598",
687
+ "Parent Id": "123456",
688
+ "Sub Type": null,
689
+ "Campaign": "Campaign 90876598",
690
+ "Ad Group": null,
691
+ "Website": null,
692
+ "Sync Time": null,
693
+ "Client Id": null,
694
+ "Modified Time": "06/01/2017 13:08:05.337",
695
+ "Tracking Template": null,
696
+ "Custom Parameter": null,
697
+ "Final Url": null,
698
+ "Mobile Final Url": null,
699
+ "Time Zone": "AmsterdamBerlinBernRomeStockholmVienna",
700
+ "Budget Id": null,
701
+ "Budget Name": null,
702
+ "Budget": "100",
703
+ "Budget Type": "DailyBudgetStandard",
704
+ "Bid Strategy Type": "ManualCpc",
705
+ "Bid Strategy MaxCpc": null,
706
+ "Bid Strategy TargetCpa": null,
707
+ "KeywordVariantMatchEnabled": null,
708
+ "Campaign Type": "SearchAndContent",
709
+ "Priority": null,
710
+ "LocalInventoryAdsEnabled": null,
711
+ "Start Date": null,
712
+ "End Date": null,
713
+ "Network Distribution": null,
714
+ "Pricing Model": null,
715
+ "Ad Rotation": null,
716
+ "Search Network": null,
717
+ "Search Bid": null,
718
+ "Content Network": null,
719
+ "Content Bid": null,
720
+ "Language": null,
721
+ "Title": null,
722
+ "Text": null,
723
+ "Display Url": null,
724
+ "Destination Url": null,
725
+ "Business Name": null,
726
+ "Phone Number": null,
727
+ "Promotion": null,
728
+ "Editorial Status": null,
729
+ "Editorial Location": null,
730
+ "Editorial Term": null,
731
+ "Editorial Reason Code": null,
732
+ "Editorial Appeal Status": null,
733
+ "Device Preference": null,
734
+ "Ad Format Preference": null,
735
+ "Title Part 1": null,
736
+ "Title Part 2": null,
737
+ "Path 1": null,
738
+ "Path 2": null,
739
+ "Keyword": null,
740
+ "Match Type": null,
741
+ "Bid": null,
742
+ "Param1": null,
743
+ "Param2": null,
744
+ "Param3": null,
745
+ "Target": null,
746
+ "Physical Intent": null,
747
+ "Bid Adjustment": null,
748
+ "Radius Target Id": null,
749
+ "Name": null,
750
+ "OS Names": null,
751
+ "Radius": null,
752
+ "Unit": null,
753
+ "Business Id": null,
754
+ "From Hour": null,
755
+ "From Minute": null,
756
+ "To Hour": null,
757
+ "To Minute": null,
758
+ "Version": null,
759
+ "Ad Schedule": null,
760
+ "Use Searcher Time Zone": null,
761
+ "Sitelink Extension Order": null,
762
+ "Sitelink Extension Link Text": null,
763
+ "Sitelink Extension Destination Url": null,
764
+ "Sitelink Extension Description1": null,
765
+ "Sitelink Extension Description2": null,
766
+ "Geo Code Status": null,
767
+ "Map Icon": null,
768
+ "Business Icon": null,
769
+ "Address Line 1": null,
770
+ "Address Line 2": null,
771
+ "Postal Code": null,
772
+ "City": null,
773
+ "State Or Province Code": null,
774
+ "Province Name": null,
775
+ "Latitude": null,
776
+ "Longitude": null,
777
+ "Country Code": null,
778
+ "Call Only": null,
779
+ "Call Tracking Enabled": null,
780
+ "Toll Free": null,
781
+ "Alternative Text": null,
782
+ "Media Ids": null,
783
+ "Publisher Countries": null,
784
+ "Store Id": null,
785
+ "Product Condition 1": null,
786
+ "Product Value 1": null,
787
+ "Product Condition 2": null,
788
+ "Product Value 2": null,
789
+ "Product Condition 3": null,
790
+ "Product Value 3": null,
791
+ "Product Condition 4": null,
792
+ "Product Value 4": null,
793
+ "Product Condition 5": null,
794
+ "Product Value 5": null,
795
+ "Product Condition 6": null,
796
+ "Product Value 6": null,
797
+ "Product Condition 7": null,
798
+ "Product Value 7": null,
799
+ "Callout Text": null,
800
+ "Action Text": null,
801
+ "Action Link Url": null,
802
+ "Price Extension Type": null,
803
+ "Header 1": null,
804
+ "Header 2": null,
805
+ "Header 3": null,
806
+ "Header 4": null,
807
+ "Header 5": null,
808
+ "Header 6": null,
809
+ "Header 7": null,
810
+ "Header 8": null,
811
+ "Price Description 1": null,
812
+ "Price Description 2": null,
813
+ "Price Description 3": null,
814
+ "Price Description 4": null,
815
+ "Price Description 5": null,
816
+ "Price Description 6": null,
817
+ "Price Description 7": null,
818
+ "Price Description 8": null,
819
+ "Final Url 1": null,
820
+ "Final Url 2": null,
821
+ "Final Url 3": null,
822
+ "Final Url 4": null,
823
+ "Final Url 5": null,
824
+ "Final Url 6": null,
825
+ "Final Url 7": null,
826
+ "Final Url 8": null,
827
+ "Final Mobile Url 1": null,
828
+ "Final Mobile Url 2": null,
829
+ "Final Mobile Url 3": null,
830
+ "Final Mobile Url 4": null,
831
+ "Final Mobile Url 5": null,
832
+ "Final Mobile Url 6": null,
833
+ "Final Mobile Url 7": null,
834
+ "Final Mobile Url 8": null,
835
+ "Price 1": null,
836
+ "Price 2": null,
837
+ "Price 3": null,
838
+ "Price 4": null,
839
+ "Price 5": null,
840
+ "Price 6": null,
841
+ "Price 7": null,
842
+ "Price 8": null,
843
+ "Currency Code 1": null,
844
+ "Currency Code 2": null,
845
+ "Currency Code 3": null,
846
+ "Currency Code 4": null,
847
+ "Currency Code 5": null,
848
+ "Currency Code 6": null,
849
+ "Currency Code 7": null,
850
+ "Currency Code 8": null,
851
+ "Price Unit 1": null,
852
+ "Price Unit 2": null,
853
+ "Price Unit 3": null,
854
+ "Price Unit 4": null,
855
+ "Price Unit 5": null,
856
+ "Price Unit 6": null,
857
+ "Price Unit 7": null,
858
+ "Price Unit 8": null,
859
+ "Price Qualifier 1": null,
860
+ "Price Qualifier 2": null,
861
+ "Price Qualifier 3": null,
862
+ "Price Qualifier 4": null,
863
+ "Price Qualifier 5": null,
864
+ "Price Qualifier 6": null,
865
+ "Price Qualifier 7": null,
866
+ "Price Qualifier 8": null,
867
+ "Is Exact": null,
868
+ "Source": null,
869
+ "Url": null,
870
+ "Structured Snippet Header": null,
871
+ "Structured Snippet Values": null,
872
+ "Spend": null,
873
+ "Impressions": null,
874
+ "Clicks": null,
875
+ "CTR": null,
876
+ "Avg CPC": null,
877
+ "Avg CPM": null,
878
+ "Avg position": null,
879
+ "Conversions": null,
880
+ "CPA": null,
881
+ "Quality Score": null,
882
+ "Keyword Relevance": null,
883
+ "Landing Page Relevance": null,
884
+ "Landing Page User Experience": null,
885
+ "App Platform": null,
886
+ "App Id": null,
887
+ "Tracking Enabled": null,
888
+ "App Status": null,
889
+ "Error": null,
890
+ "Error Number": null,
891
+ "Field Path": null,
892
+ "Is Excluded": null,
893
+ "Parent Criterion Id": null,
894
+ "Audience": null,
895
+ "Audience Id": null,
896
+ "Scope": null,
897
+ "Membership Duration": null,
898
+ "UET Tag Id": null,
899
+ "Description": null,
900
+ "Remarketing Rule": null,
901
+ "Remarketing Targeting Setting": null,
902
+ "Domain Language": null,
903
+ "Dynamic Ad Target Condition 1": null,
904
+ "Dynamic Ad Target Condition 2": null,
905
+ "Dynamic Ad Target Condition 3": null,
906
+ "Dynamic Ad Target Value 1": null,
907
+ "Dynamic Ad Target Value 2": null,
908
+ "Dynamic Ad Target Value 3": null
909
+ }
910
+ ]