soapy_bing 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -1,218 +0,0 @@
1
- [
2
- {
3
- "i:type": "TextAd",
4
- "DevicePreference": "0",
5
- "EditorialStatus": "Active",
6
- "FinalAppUrls": {
7
- "i:nil": "true",
8
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
9
- },
10
- "FinalMobileUrls": {
11
- "i:nil": "true",
12
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
13
- },
14
- "FinalUrls": {
15
- "i:nil": "true",
16
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
17
- },
18
- "ForwardCompatibilityMap": {
19
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
20
- },
21
- "Id": "11792482357",
22
- "Status": "Paused",
23
- "TrackingUrlTemplate": {
24
- "i:nil": "true"
25
- },
26
- "Type": "Text",
27
- "UrlCustomParameters": {
28
- "i:nil": "true",
29
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
30
- },
31
- "DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
32
- "DisplayUrl": "animaljam.com",
33
- "Text": "Online playground for boys and girls who love animals. Register Now!",
34
- "Title": "Animal Jam free to play"
35
- },
36
- {
37
- "i:type": "TextAd",
38
- "DevicePreference": "0",
39
- "EditorialStatus": "Active",
40
- "FinalAppUrls": {
41
- "i:nil": "true",
42
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
43
- },
44
- "FinalMobileUrls": {
45
- "i:nil": "true",
46
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
47
- },
48
- "FinalUrls": {
49
- "i:nil": "true",
50
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
51
- },
52
- "ForwardCompatibilityMap": {
53
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
54
- },
55
- "Id": "11792482358",
56
- "Status": "Active",
57
- "TrackingUrlTemplate": {
58
- "i:nil": "true"
59
- },
60
- "Type": "Text",
61
- "UrlCustomParameters": {
62
- "i:nil": "true",
63
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
64
- },
65
- "DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
66
- "DisplayUrl": "animaljam.com",
67
- "Text": "Adopt pets, chat with friends, play games and more. Play for free now!",
68
- "Title": "Play Wild in Animal Jam"
69
- },
70
- {
71
- "i:type": "TextAd",
72
- "DevicePreference": "0",
73
- "EditorialStatus": "Active",
74
- "FinalAppUrls": {
75
- "i:nil": "true",
76
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
77
- },
78
- "FinalMobileUrls": {
79
- "i:nil": "true",
80
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
81
- },
82
- "FinalUrls": {
83
- "i:nil": "true",
84
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
85
- },
86
- "ForwardCompatibilityMap": {
87
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
88
- },
89
- "Id": "11792482359",
90
- "Status": "Paused",
91
- "TrackingUrlTemplate": {
92
- "i:nil": "true"
93
- },
94
- "Type": "Text",
95
- "UrlCustomParameters": {
96
- "i:nil": "true",
97
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
98
- },
99
- "DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
100
- "DisplayUrl": "animaljam.com",
101
- "Text": "Have fun with National Geographic's Animal Jam - play now for free!",
102
- "Title": "Play Animal Jam Online"
103
- },
104
- {
105
- "i:type": "TextAd",
106
- "DevicePreference": "0",
107
- "EditorialStatus": "Active",
108
- "FinalAppUrls": {
109
- "i:nil": "true",
110
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
111
- },
112
- "FinalMobileUrls": {
113
- "i:nil": "true",
114
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
115
- },
116
- "FinalUrls": {
117
- "i:nil": "true",
118
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
119
- },
120
- "ForwardCompatibilityMap": {
121
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic",
122
- "KeyValuePairOfstringstring": {
123
- "key": "NativePreference",
124
- "value": "False"
125
- }
126
- },
127
- "Id": "13055725676",
128
- "Status": "Active",
129
- "TrackingUrlTemplate": {
130
- "i:nil": "true"
131
- },
132
- "Type": "Text",
133
- "UrlCustomParameters": {
134
- "i:nil": "true",
135
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
136
- },
137
- "DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
138
- "DisplayUrl": "AnimalJam.com",
139
- "Text": "Adopt pets, chat with friends, play games and have fun. Play now!",
140
- "Title": "Play Wild in Animal Jam"
141
- },
142
- {
143
- "i:type": "TextAd",
144
- "DevicePreference": "0",
145
- "EditorialStatus": "Active",
146
- "FinalAppUrls": {
147
- "i:nil": "true",
148
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
149
- },
150
- "FinalMobileUrls": {
151
- "i:nil": "true",
152
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
153
- },
154
- "FinalUrls": {
155
- "i:nil": "true",
156
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
157
- },
158
- "ForwardCompatibilityMap": {
159
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic",
160
- "KeyValuePairOfstringstring": {
161
- "key": "NativePreference",
162
- "value": "False"
163
- }
164
- },
165
- "Id": "13089495292",
166
- "Status": "Paused",
167
- "TrackingUrlTemplate": {
168
- "i:nil": "true"
169
- },
170
- "Type": "Text",
171
- "UrlCustomParameters": {
172
- "i:nil": "true",
173
- "xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
174
- },
175
- "DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
176
- "DisplayUrl": "AnimalJam.com",
177
- "Text": "Virtual pets, parties and more. Join the fun. Play Wild!",
178
- "Title": "Play Wild in Animal Jam"
179
- },
180
- {
181
- "i:type":"TextAd",
182
- "DevicePreference":"0",
183
- "EditorialStatus":"Active",
184
- "FinalAppUrls":{
185
- "i:nil":"true",
186
- "xmlns:a":"http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
187
- },
188
- "FinalMobileUrls":{
189
- "i:nil":"true",
190
- "xmlns:a":"http://schemas.microsoft.com/2003/10/Serialization/Arrays"
191
- },
192
- "FinalUrls":{
193
- "i:nil":"true",
194
- "xmlns:a":"http://schemas.microsoft.com/2003/10/Serialization/Arrays"
195
- },
196
- "ForwardCompatibilityMap":{
197
- "xmlns:a":"http://schemas.datacontract.org/2004/07/System.Collections.Generic",
198
- "KeyValuePairOfstringstring":{
199
- "key":"NativePreference",
200
- "value":"False"
201
- }
202
- },
203
- "Id":"13950954205",
204
- "Status":"Active",
205
- "TrackingUrlTemplate":{
206
- "i:nil":"true"
207
- },
208
- "Type":"Text",
209
- "UrlCustomParameters":{
210
- "i:nil":"true",
211
- "xmlns:a":"http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
212
- },
213
- "DestinationUrl":"a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
214
- "DisplayUrl":"PlayWild.AnimalJam.com",
215
- "Text":"Adopt pets, chat with friends, play games and more. Play for free now!",
216
- "Title":"Play Wild in Animal Jam"
217
- }
218
- ]
@@ -1,81 +0,0 @@
1
- {
2
- "Age": {
3
- "i:nil": "true"
4
- },
5
- "DayTime": {
6
- "i:nil": "true"
7
- },
8
- "DeviceOS": {
9
- "Bids": {
10
- "DeviceOSTargetBid": [
11
- {
12
- "BidAdjustment": "0",
13
- "DeviceName": "Computers",
14
- "OSNames": {
15
- "i:nil": "true",
16
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
17
- }
18
- },
19
- {
20
- "BidAdjustment": "-100",
21
- "DeviceName": "Smartphones",
22
- "OSNames": {
23
- "i:nil": "true",
24
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
25
- }
26
- },
27
- {
28
- "BidAdjustment": "0",
29
- "DeviceName": "Tablets",
30
- "OSNames": {
31
- "i:nil": "true",
32
- "xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
33
- }
34
- }
35
- ]
36
- }
37
- },
38
- "ForwardCompatibilityMap": {
39
- "xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
40
- },
41
- "Gender": {
42
- "i:nil": "true"
43
- },
44
- "Id": "462821758",
45
- "IsLibraryTarget": "true",
46
- "Location": {
47
- "CityTarget": {
48
- "i:nil": "true"
49
- },
50
- "CountryTarget": {
51
- "Bids": {
52
- "CountryTargetBid": [
53
- {
54
- "BidAdjustment": "0",
55
- "CountryAndRegion": "AU",
56
- "IsExcluded": "false"
57
- },
58
- {
59
- "BidAdjustment": "0",
60
- "CountryAndRegion": "US",
61
- "IsExcluded": "true"
62
- }
63
- ]
64
- }
65
- },
66
- "IntentOption": "PeopleIn",
67
- "MetroAreaTarget": {
68
- "i:nil": "true"
69
- },
70
- "PostalCodeTarget": {
71
- "i:nil": "true"
72
- },
73
- "RadiusTarget": {
74
- "i:nil": "true"
75
- },
76
- "StateTarget": {
77
- "i:nil": "true"
78
- }
79
- },
80
- "Name": "targetgroup1"
81
- }
@@ -1,37 +0,0 @@
1
- "Report Name: MyReport"
2
- "Report Time: 10/14/2015"
3
- "Time Zone: Various"
4
- "Last Completed Available Day: 11/16/2015 2:40:00 AM (GMT)"
5
- "Last Completed Available Hour: 11/16/2015 2:40:00 AM (GMT)"
6
- "Report Aggregation: Hour of day"
7
- "Report Filter: "
8
- "Potential Incomplete Data: true"
9
- "Rows: 24"
10
-
11
- "HourOfDay","Impressions","Clicks","Spend"
12
- "0","3793","1599","72.65"
13
- "1","3560","1429","65.38"
14
- "2","3177","1275","57.92"
15
- "3","2194","849","38.68"
16
- "4","1393","531","24.14"
17
- "5","765","247","11.07"
18
- "6","393","141","6.31"
19
- "7","152","55","2.46"
20
- "8","86","25","1.12"
21
- "9","16","6","0.27"
22
- "10","6","3","0.13"
23
- "11","6","2","0.09"
24
- "12","36","18","0.80"
25
- "13","115","58","2.58"
26
- "14","754","332","14.89"
27
- "15","934","434","19.63"
28
- "16","1177","525","23.63"
29
- "17","1127","528","23.80"
30
- "18","1107","509","22.88"
31
- "19","1281","615","27.77"
32
- "20","1718","789","35.56"
33
- "21","2472","1207","54.23"
34
- "22","3660","1621","73.08"
35
- "23","3843","1754","79.54"
36
-
37
- "©2015 Microsoft Corporation. All rights reserved. "
@@ -1,146 +0,0 @@
1
- [
2
- {
3
- "HourOfDay": "0",
4
- "Impressions": "3793",
5
- "Clicks": "1599",
6
- "Spend": "72.65"
7
- },
8
- {
9
- "HourOfDay": "1",
10
- "Impressions": "3560",
11
- "Clicks": "1429",
12
- "Spend": "65.38"
13
- },
14
- {
15
- "HourOfDay": "2",
16
- "Impressions": "3177",
17
- "Clicks": "1275",
18
- "Spend": "57.92"
19
- },
20
- {
21
- "HourOfDay": "3",
22
- "Impressions": "2194",
23
- "Clicks": "849",
24
- "Spend": "38.68"
25
- },
26
- {
27
- "HourOfDay": "4",
28
- "Impressions": "1393",
29
- "Clicks": "531",
30
- "Spend": "24.14"
31
- },
32
- {
33
- "HourOfDay": "5",
34
- "Impressions": "765",
35
- "Clicks": "247",
36
- "Spend": "11.07"
37
- },
38
- {
39
- "HourOfDay": "6",
40
- "Impressions": "393",
41
- "Clicks": "141",
42
- "Spend": "6.31"
43
- },
44
- {
45
- "HourOfDay": "7",
46
- "Impressions": "152",
47
- "Clicks": "55",
48
- "Spend": "2.46"
49
- },
50
- {
51
- "HourOfDay": "8",
52
- "Impressions": "86",
53
- "Clicks": "25",
54
- "Spend": "1.12"
55
- },
56
- {
57
- "HourOfDay": "9",
58
- "Impressions": "16",
59
- "Clicks": "6",
60
- "Spend": "0.27"
61
- },
62
- {
63
- "HourOfDay": "10",
64
- "Impressions": "6",
65
- "Clicks": "3",
66
- "Spend": "0.13"
67
- },
68
- {
69
- "HourOfDay": "11",
70
- "Impressions": "6",
71
- "Clicks": "2",
72
- "Spend": "0.09"
73
- },
74
- {
75
- "HourOfDay": "12",
76
- "Impressions": "36",
77
- "Clicks": "18",
78
- "Spend": "0.80"
79
- },
80
- {
81
- "HourOfDay": "13",
82
- "Impressions": "115",
83
- "Clicks": "58",
84
- "Spend": "2.58"
85
- },
86
- {
87
- "HourOfDay": "14",
88
- "Impressions": "754",
89
- "Clicks": "332",
90
- "Spend": "14.89"
91
- },
92
- {
93
- "HourOfDay": "15",
94
- "Impressions": "934",
95
- "Clicks": "434",
96
- "Spend": "19.63"
97
- },
98
- {
99
- "HourOfDay": "16",
100
- "Impressions": "1177",
101
- "Clicks": "525",
102
- "Spend": "23.63"
103
- },
104
- {
105
- "HourOfDay": "17",
106
- "Impressions": "1127",
107
- "Clicks": "528",
108
- "Spend": "23.80"
109
- },
110
- {
111
- "HourOfDay": "18",
112
- "Impressions": "1107",
113
- "Clicks": "509",
114
- "Spend": "22.88"
115
- },
116
- {
117
- "HourOfDay": "19",
118
- "Impressions": "1281",
119
- "Clicks": "615",
120
- "Spend": "27.77"
121
- },
122
- {
123
- "HourOfDay": "20",
124
- "Impressions": "1718",
125
- "Clicks": "789",
126
- "Spend": "35.56"
127
- },
128
- {
129
- "HourOfDay": "21",
130
- "Impressions": "2472",
131
- "Clicks": "1207",
132
- "Spend": "54.23"
133
- },
134
- {
135
- "HourOfDay": "22",
136
- "Impressions": "3660",
137
- "Clicks": "1621",
138
- "Spend": "73.08"
139
- },
140
- {
141
- "HourOfDay": "23",
142
- "Impressions": "3843",
143
- "Clicks": "1754",
144
- "Spend": "79.54"
145
- }
146
- ]