adcenter-client 7.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +23 -0
- data/History.txt +6 -0
- data/Manifest.txt +55 -0
- data/README.txt +78 -0
- data/Rakefile.rb +31 -0
- data/TODO +12 -0
- data/bin/gen_wsdl_drivers.rb +26 -0
- data/bin/wsdl.yml +16 -0
- data/lib/AdministrationService.rb +79 -0
- data/lib/AdministrationServiceClient.rb +40 -0
- data/lib/AdministrationServiceDriver.rb +55 -0
- data/lib/AdministrationServiceMappingRegistry.rb +148 -0
- data/lib/CampaignManagementService.rb +3458 -0
- data/lib/CampaignManagementServiceClient.rb +1370 -0
- data/lib/CampaignManagementServiceDriver.rb +719 -0
- data/lib/CampaignManagementServiceMappingRegistry.rb +5107 -0
- data/lib/CustomerBillingService.rb +390 -0
- data/lib/CustomerBillingServiceClient.rb +126 -0
- data/lib/CustomerBillingServiceDriver.rb +95 -0
- data/lib/CustomerBillingServiceMappingRegistry.rb +676 -0
- data/lib/CustomerManagementService.rb +1284 -0
- data/lib/CustomerManagementServiceClient.rb +282 -0
- data/lib/CustomerManagementServiceDriver.rb +175 -0
- data/lib/CustomerManagementServiceMappingRegistry.rb +1471 -0
- data/lib/NotificationManagementClient.rb +89 -0
- data/lib/ReportingService.rb +2121 -0
- data/lib/ReportingServiceClient.rb +42 -0
- data/lib/ReportingServiceDriver.rb +55 -0
- data/lib/ReportingServiceMappingRegistry.rb +3164 -0
- data/lib/SecureDataManagementService.rb +203 -0
- data/lib/SecureDataManagementServiceClient.rb +26 -0
- data/lib/SecureDataManagementServiceDriver.rb +47 -0
- data/lib/SecureDataManagementServiceMappingRegistry.rb +376 -0
- data/lib/adcenter_client.rb +103 -0
- data/lib/adcenter_service.rb +70 -0
- data/lib/administration_service.rb +7 -0
- data/lib/campaign_management_service.rb +7 -0
- data/lib/custom_assertions.rb +5 -0
- data/lib/custom_exceptions.rb +1 -0
- data/lib/customer_billing_service.rb +7 -0
- data/lib/customer_management_service.rb +9 -0
- data/lib/default.rb +636 -0
- data/lib/defaultDriver.rb +63 -0
- data/lib/defaultMappingRegistry.rb +525 -0
- data/lib/notification_management.rb +7 -0
- data/lib/reporting_service.rb +7 -0
- data/lib/secure_data_management_service.rb +7 -0
- data/tasks/doctask.rake +9 -0
- data/tasks/testtask.rake +13 -0
- data/test/adcenter_client_test.rb +13 -0
- data/test/administration_service_test.rb +19 -0
- data/test/customer_management_service_test.rb +20 -0
- data/test/report_service_test.rb +34 -0
- data/test/test_credentials.yml-sample +7 -0
- data/test/test_helper.rb +8 -0
- metadata +188 -0
@@ -0,0 +1,89 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'defaultDriver.rb'
|
3
|
+
|
4
|
+
endpoint_url = ARGV.shift
|
5
|
+
obj = NotificationManagementSoap.new(endpoint_url)
|
6
|
+
|
7
|
+
# run ruby with -d to see SOAP wiredumps.
|
8
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
9
|
+
|
10
|
+
# SYNOPSIS
|
11
|
+
# GetNotifications(parameters)
|
12
|
+
#
|
13
|
+
# ARGS
|
14
|
+
# parameters GetNotifications - {http://adcenter.microsoft.com/syncapis}GetNotifications
|
15
|
+
#
|
16
|
+
# RETURNS
|
17
|
+
# parameters GetNotificationsResponse - {http://adcenter.microsoft.com/syncapis}GetNotificationsResponse
|
18
|
+
#
|
19
|
+
parameters = nil
|
20
|
+
puts obj.getNotifications(parameters)
|
21
|
+
|
22
|
+
# SYNOPSIS
|
23
|
+
# GetNotificationsByType(parameters)
|
24
|
+
#
|
25
|
+
# ARGS
|
26
|
+
# parameters GetNotificationsByType - {http://adcenter.microsoft.com/syncapis}GetNotificationsByType
|
27
|
+
#
|
28
|
+
# RETURNS
|
29
|
+
# parameters GetNotificationsByTypeResponse - {http://adcenter.microsoft.com/syncapis}GetNotificationsByTypeResponse
|
30
|
+
#
|
31
|
+
parameters = nil
|
32
|
+
puts obj.getNotificationsByType(parameters)
|
33
|
+
|
34
|
+
# SYNOPSIS
|
35
|
+
# GetArchivedNotifications(parameters)
|
36
|
+
#
|
37
|
+
# ARGS
|
38
|
+
# parameters GetArchivedNotifications - {http://adcenter.microsoft.com/syncapis}GetArchivedNotifications
|
39
|
+
#
|
40
|
+
# RETURNS
|
41
|
+
# parameters GetArchivedNotificationsResponse - {http://adcenter.microsoft.com/syncapis}GetArchivedNotificationsResponse
|
42
|
+
#
|
43
|
+
parameters = nil
|
44
|
+
puts obj.getArchivedNotifications(parameters)
|
45
|
+
|
46
|
+
|
47
|
+
endpoint_url = ARGV.shift
|
48
|
+
obj = NotificationManagementSoap.new(endpoint_url)
|
49
|
+
|
50
|
+
# run ruby with -d to see SOAP wiredumps.
|
51
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
52
|
+
|
53
|
+
# SYNOPSIS
|
54
|
+
# GetNotifications(parameters)
|
55
|
+
#
|
56
|
+
# ARGS
|
57
|
+
# parameters GetNotifications - {http://adcenter.microsoft.com/syncapis}GetNotifications
|
58
|
+
#
|
59
|
+
# RETURNS
|
60
|
+
# parameters GetNotificationsResponse - {http://adcenter.microsoft.com/syncapis}GetNotificationsResponse
|
61
|
+
#
|
62
|
+
parameters = nil
|
63
|
+
puts obj.getNotifications(parameters)
|
64
|
+
|
65
|
+
# SYNOPSIS
|
66
|
+
# GetNotificationsByType(parameters)
|
67
|
+
#
|
68
|
+
# ARGS
|
69
|
+
# parameters GetNotificationsByType - {http://adcenter.microsoft.com/syncapis}GetNotificationsByType
|
70
|
+
#
|
71
|
+
# RETURNS
|
72
|
+
# parameters GetNotificationsByTypeResponse - {http://adcenter.microsoft.com/syncapis}GetNotificationsByTypeResponse
|
73
|
+
#
|
74
|
+
parameters = nil
|
75
|
+
puts obj.getNotificationsByType(parameters)
|
76
|
+
|
77
|
+
# SYNOPSIS
|
78
|
+
# GetArchivedNotifications(parameters)
|
79
|
+
#
|
80
|
+
# ARGS
|
81
|
+
# parameters GetArchivedNotifications - {http://adcenter.microsoft.com/syncapis}GetArchivedNotifications
|
82
|
+
#
|
83
|
+
# RETURNS
|
84
|
+
# parameters GetArchivedNotificationsResponse - {http://adcenter.microsoft.com/syncapis}GetArchivedNotificationsResponse
|
85
|
+
#
|
86
|
+
parameters = nil
|
87
|
+
puts obj.getArchivedNotifications(parameters)
|
88
|
+
|
89
|
+
|
@@ -0,0 +1,2121 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {https://adcenter.microsoft.com/v7}ReportRequest
|
4
|
+
# format - ReportFormat
|
5
|
+
# language - ReportLanguage
|
6
|
+
# reportName - SOAP::SOAPString
|
7
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
8
|
+
class ReportRequest
|
9
|
+
attr_accessor :format
|
10
|
+
attr_accessor :language
|
11
|
+
attr_accessor :reportName
|
12
|
+
attr_accessor :returnOnlyCompleteData
|
13
|
+
|
14
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil)
|
15
|
+
@format = format
|
16
|
+
@language = language
|
17
|
+
@reportName = reportName
|
18
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# {https://adcenter.microsoft.com/v7}AdDynamicTextPerformanceReportRequest
|
23
|
+
# format - ReportFormat
|
24
|
+
# language - ReportLanguage
|
25
|
+
# reportName - SOAP::SOAPString
|
26
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
27
|
+
# aggregation - NonHourlyReportAggregation
|
28
|
+
# columns - ArrayOfAdDynamicTextPerformanceReportColumn
|
29
|
+
# filter - AdDynamicTextPerformanceReportFilter
|
30
|
+
# scope - AccountThroughAdGroupReportScope
|
31
|
+
# time - ReportTime
|
32
|
+
class AdDynamicTextPerformanceReportRequest < ReportRequest
|
33
|
+
attr_accessor :format
|
34
|
+
attr_accessor :language
|
35
|
+
attr_accessor :reportName
|
36
|
+
attr_accessor :returnOnlyCompleteData
|
37
|
+
attr_accessor :aggregation
|
38
|
+
attr_accessor :columns
|
39
|
+
attr_accessor :filter
|
40
|
+
attr_accessor :scope
|
41
|
+
attr_accessor :time
|
42
|
+
|
43
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
44
|
+
@format = format
|
45
|
+
@language = language
|
46
|
+
@reportName = reportName
|
47
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
48
|
+
@aggregation = aggregation
|
49
|
+
@columns = columns
|
50
|
+
@filter = filter
|
51
|
+
@scope = scope
|
52
|
+
@time = time
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
# {https://adcenter.microsoft.com/v7}KeywordPerformanceReportRequest
|
57
|
+
# format - ReportFormat
|
58
|
+
# language - ReportLanguage
|
59
|
+
# reportName - SOAP::SOAPString
|
60
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
61
|
+
# aggregation - ReportAggregation
|
62
|
+
# columns - ArrayOfKeywordPerformanceReportColumn
|
63
|
+
# filter - KeywordPerformanceReportFilter
|
64
|
+
# scope - AccountThroughAdGroupReportScope
|
65
|
+
# time - ReportTime
|
66
|
+
class KeywordPerformanceReportRequest < ReportRequest
|
67
|
+
attr_accessor :format
|
68
|
+
attr_accessor :language
|
69
|
+
attr_accessor :reportName
|
70
|
+
attr_accessor :returnOnlyCompleteData
|
71
|
+
attr_accessor :aggregation
|
72
|
+
attr_accessor :columns
|
73
|
+
attr_accessor :filter
|
74
|
+
attr_accessor :scope
|
75
|
+
attr_accessor :time
|
76
|
+
|
77
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
78
|
+
@format = format
|
79
|
+
@language = language
|
80
|
+
@reportName = reportName
|
81
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
82
|
+
@aggregation = aggregation
|
83
|
+
@columns = columns
|
84
|
+
@filter = filter
|
85
|
+
@scope = scope
|
86
|
+
@time = time
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
# {https://adcenter.microsoft.com/v7}DestinationUrlPerformanceReportRequest
|
91
|
+
# format - ReportFormat
|
92
|
+
# language - ReportLanguage
|
93
|
+
# reportName - SOAP::SOAPString
|
94
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
95
|
+
# aggregation - NonHourlyReportAggregation
|
96
|
+
# columns - ArrayOfDestinationUrlPerformanceReportColumn
|
97
|
+
# filter - DestinationUrlPerformanceReportFilter
|
98
|
+
# scope - AccountThroughAdGroupReportScope
|
99
|
+
# time - ReportTime
|
100
|
+
class DestinationUrlPerformanceReportRequest < ReportRequest
|
101
|
+
attr_accessor :format
|
102
|
+
attr_accessor :language
|
103
|
+
attr_accessor :reportName
|
104
|
+
attr_accessor :returnOnlyCompleteData
|
105
|
+
attr_accessor :aggregation
|
106
|
+
attr_accessor :columns
|
107
|
+
attr_accessor :filter
|
108
|
+
attr_accessor :scope
|
109
|
+
attr_accessor :time
|
110
|
+
|
111
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
112
|
+
@format = format
|
113
|
+
@language = language
|
114
|
+
@reportName = reportName
|
115
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
116
|
+
@aggregation = aggregation
|
117
|
+
@columns = columns
|
118
|
+
@filter = filter
|
119
|
+
@scope = scope
|
120
|
+
@time = time
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
# {https://adcenter.microsoft.com/v7}TacticChannelReportRequest
|
125
|
+
# format - ReportFormat
|
126
|
+
# language - ReportLanguage
|
127
|
+
# reportName - SOAP::SOAPString
|
128
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
129
|
+
# aggregation - NonHourlyReportAggregation
|
130
|
+
# columns - ArrayOfTacticChannelReportColumn
|
131
|
+
# filter - TacticChannelReportFilter
|
132
|
+
# scope - AccountThroughAdGroupReportScope
|
133
|
+
# time - ReportTime
|
134
|
+
class TacticChannelReportRequest < ReportRequest
|
135
|
+
attr_accessor :format
|
136
|
+
attr_accessor :language
|
137
|
+
attr_accessor :reportName
|
138
|
+
attr_accessor :returnOnlyCompleteData
|
139
|
+
attr_accessor :aggregation
|
140
|
+
attr_accessor :columns
|
141
|
+
attr_accessor :filter
|
142
|
+
attr_accessor :scope
|
143
|
+
attr_accessor :time
|
144
|
+
|
145
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
146
|
+
@format = format
|
147
|
+
@language = language
|
148
|
+
@reportName = reportName
|
149
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
150
|
+
@aggregation = aggregation
|
151
|
+
@columns = columns
|
152
|
+
@filter = filter
|
153
|
+
@scope = scope
|
154
|
+
@time = time
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
# {https://adcenter.microsoft.com/v7}AccountPerformanceReportRequest
|
159
|
+
# format - ReportFormat
|
160
|
+
# language - ReportLanguage
|
161
|
+
# reportName - SOAP::SOAPString
|
162
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
163
|
+
# aggregation - ReportAggregation
|
164
|
+
# columns - ArrayOfAccountPerformanceReportColumn
|
165
|
+
# filter - AccountPerformanceReportFilter
|
166
|
+
# scope - AccountReportScope
|
167
|
+
# time - ReportTime
|
168
|
+
class AccountPerformanceReportRequest < ReportRequest
|
169
|
+
attr_accessor :format
|
170
|
+
attr_accessor :language
|
171
|
+
attr_accessor :reportName
|
172
|
+
attr_accessor :returnOnlyCompleteData
|
173
|
+
attr_accessor :aggregation
|
174
|
+
attr_accessor :columns
|
175
|
+
attr_accessor :filter
|
176
|
+
attr_accessor :scope
|
177
|
+
attr_accessor :time
|
178
|
+
|
179
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
180
|
+
@format = format
|
181
|
+
@language = language
|
182
|
+
@reportName = reportName
|
183
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
184
|
+
@aggregation = aggregation
|
185
|
+
@columns = columns
|
186
|
+
@filter = filter
|
187
|
+
@scope = scope
|
188
|
+
@time = time
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
# {https://adcenter.microsoft.com/v7}CampaignPerformanceReportRequest
|
193
|
+
# format - ReportFormat
|
194
|
+
# language - ReportLanguage
|
195
|
+
# reportName - SOAP::SOAPString
|
196
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
197
|
+
# aggregation - ReportAggregation
|
198
|
+
# columns - ArrayOfCampaignPerformanceReportColumn
|
199
|
+
# filter - CampaignPerformanceReportFilter
|
200
|
+
# scope - AccountThroughCampaignReportScope
|
201
|
+
# time - ReportTime
|
202
|
+
class CampaignPerformanceReportRequest < ReportRequest
|
203
|
+
attr_accessor :format
|
204
|
+
attr_accessor :language
|
205
|
+
attr_accessor :reportName
|
206
|
+
attr_accessor :returnOnlyCompleteData
|
207
|
+
attr_accessor :aggregation
|
208
|
+
attr_accessor :columns
|
209
|
+
attr_accessor :filter
|
210
|
+
attr_accessor :scope
|
211
|
+
attr_accessor :time
|
212
|
+
|
213
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
214
|
+
@format = format
|
215
|
+
@language = language
|
216
|
+
@reportName = reportName
|
217
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
218
|
+
@aggregation = aggregation
|
219
|
+
@columns = columns
|
220
|
+
@filter = filter
|
221
|
+
@scope = scope
|
222
|
+
@time = time
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
# {https://adcenter.microsoft.com/v7}AdGroupPerformanceReportRequest
|
227
|
+
# format - ReportFormat
|
228
|
+
# language - ReportLanguage
|
229
|
+
# reportName - SOAP::SOAPString
|
230
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
231
|
+
# aggregation - ReportAggregation
|
232
|
+
# columns - ArrayOfAdGroupPerformanceReportColumn
|
233
|
+
# filter - AdGroupPerformanceReportFilter
|
234
|
+
# scope - AccountThroughAdGroupReportScope
|
235
|
+
# time - ReportTime
|
236
|
+
class AdGroupPerformanceReportRequest < ReportRequest
|
237
|
+
attr_accessor :format
|
238
|
+
attr_accessor :language
|
239
|
+
attr_accessor :reportName
|
240
|
+
attr_accessor :returnOnlyCompleteData
|
241
|
+
attr_accessor :aggregation
|
242
|
+
attr_accessor :columns
|
243
|
+
attr_accessor :filter
|
244
|
+
attr_accessor :scope
|
245
|
+
attr_accessor :time
|
246
|
+
|
247
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
248
|
+
@format = format
|
249
|
+
@language = language
|
250
|
+
@reportName = reportName
|
251
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
252
|
+
@aggregation = aggregation
|
253
|
+
@columns = columns
|
254
|
+
@filter = filter
|
255
|
+
@scope = scope
|
256
|
+
@time = time
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
# {https://adcenter.microsoft.com/v7}AdPerformanceReportRequest
|
261
|
+
# format - ReportFormat
|
262
|
+
# language - ReportLanguage
|
263
|
+
# reportName - SOAP::SOAPString
|
264
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
265
|
+
# aggregation - NonHourlyReportAggregation
|
266
|
+
# columns - ArrayOfAdPerformanceReportColumn
|
267
|
+
# filter - AdPerformanceReportFilter
|
268
|
+
# scope - AccountThroughAdGroupReportScope
|
269
|
+
# time - ReportTime
|
270
|
+
class AdPerformanceReportRequest < ReportRequest
|
271
|
+
attr_accessor :format
|
272
|
+
attr_accessor :language
|
273
|
+
attr_accessor :reportName
|
274
|
+
attr_accessor :returnOnlyCompleteData
|
275
|
+
attr_accessor :aggregation
|
276
|
+
attr_accessor :columns
|
277
|
+
attr_accessor :filter
|
278
|
+
attr_accessor :scope
|
279
|
+
attr_accessor :time
|
280
|
+
|
281
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
282
|
+
@format = format
|
283
|
+
@language = language
|
284
|
+
@reportName = reportName
|
285
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
286
|
+
@aggregation = aggregation
|
287
|
+
@columns = columns
|
288
|
+
@filter = filter
|
289
|
+
@scope = scope
|
290
|
+
@time = time
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
# {https://adcenter.microsoft.com/v7}BudgetSummaryReportRequest
|
295
|
+
# format - ReportFormat
|
296
|
+
# language - ReportLanguage
|
297
|
+
# reportName - SOAP::SOAPString
|
298
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
299
|
+
# columns - ArrayOfBudgetSummaryReportColumn
|
300
|
+
# scope - AccountReportScope
|
301
|
+
# time - BudgetSummaryReportTime
|
302
|
+
class BudgetSummaryReportRequest < ReportRequest
|
303
|
+
attr_accessor :format
|
304
|
+
attr_accessor :language
|
305
|
+
attr_accessor :reportName
|
306
|
+
attr_accessor :returnOnlyCompleteData
|
307
|
+
attr_accessor :columns
|
308
|
+
attr_accessor :scope
|
309
|
+
attr_accessor :time
|
310
|
+
|
311
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, columns = nil, scope = nil, time = nil)
|
312
|
+
@format = format
|
313
|
+
@language = language
|
314
|
+
@reportName = reportName
|
315
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
316
|
+
@columns = columns
|
317
|
+
@scope = scope
|
318
|
+
@time = time
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
# {https://adcenter.microsoft.com/v7}AgeGenderDemographicReportRequest
|
323
|
+
# format - ReportFormat
|
324
|
+
# language - ReportLanguage
|
325
|
+
# reportName - SOAP::SOAPString
|
326
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
327
|
+
# aggregation - NonHourlyReportAggregation
|
328
|
+
# columns - ArrayOfAgeGenderDemographicReportColumn
|
329
|
+
# filter - AgeGenderDemographicReportFilter
|
330
|
+
# scope - AccountThroughAdGroupReportScope
|
331
|
+
# time - ReportTime
|
332
|
+
class AgeGenderDemographicReportRequest < ReportRequest
|
333
|
+
attr_accessor :format
|
334
|
+
attr_accessor :language
|
335
|
+
attr_accessor :reportName
|
336
|
+
attr_accessor :returnOnlyCompleteData
|
337
|
+
attr_accessor :aggregation
|
338
|
+
attr_accessor :columns
|
339
|
+
attr_accessor :filter
|
340
|
+
attr_accessor :scope
|
341
|
+
attr_accessor :time
|
342
|
+
|
343
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
344
|
+
@format = format
|
345
|
+
@language = language
|
346
|
+
@reportName = reportName
|
347
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
348
|
+
@aggregation = aggregation
|
349
|
+
@columns = columns
|
350
|
+
@filter = filter
|
351
|
+
@scope = scope
|
352
|
+
@time = time
|
353
|
+
end
|
354
|
+
end
|
355
|
+
|
356
|
+
# {https://adcenter.microsoft.com/v7}MetroAreaDemographicReportRequest
|
357
|
+
# format - ReportFormat
|
358
|
+
# language - ReportLanguage
|
359
|
+
# reportName - SOAP::SOAPString
|
360
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
361
|
+
# aggregation - NonHourlyReportAggregation
|
362
|
+
# columns - ArrayOfMetroAreaDemographicReportColumn
|
363
|
+
# filter - MetroAreaDemographicReportFilter
|
364
|
+
# scope - AccountThroughAdGroupReportScope
|
365
|
+
# time - ReportTime
|
366
|
+
class MetroAreaDemographicReportRequest < ReportRequest
|
367
|
+
attr_accessor :format
|
368
|
+
attr_accessor :language
|
369
|
+
attr_accessor :reportName
|
370
|
+
attr_accessor :returnOnlyCompleteData
|
371
|
+
attr_accessor :aggregation
|
372
|
+
attr_accessor :columns
|
373
|
+
attr_accessor :filter
|
374
|
+
attr_accessor :scope
|
375
|
+
attr_accessor :time
|
376
|
+
|
377
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
378
|
+
@format = format
|
379
|
+
@language = language
|
380
|
+
@reportName = reportName
|
381
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
382
|
+
@aggregation = aggregation
|
383
|
+
@columns = columns
|
384
|
+
@filter = filter
|
385
|
+
@scope = scope
|
386
|
+
@time = time
|
387
|
+
end
|
388
|
+
end
|
389
|
+
|
390
|
+
# {https://adcenter.microsoft.com/v7}PublisherUsagePerformanceReportRequest
|
391
|
+
# format - ReportFormat
|
392
|
+
# language - ReportLanguage
|
393
|
+
# reportName - SOAP::SOAPString
|
394
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
395
|
+
# aggregation - NonHourlyReportAggregation
|
396
|
+
# columns - ArrayOfPublisherUsagePerformanceReportColumn
|
397
|
+
# filter - PublisherUsagePerformanceReportFilter
|
398
|
+
# scope - AccountThroughAdGroupReportScope
|
399
|
+
# time - ReportTime
|
400
|
+
class PublisherUsagePerformanceReportRequest < ReportRequest
|
401
|
+
attr_accessor :format
|
402
|
+
attr_accessor :language
|
403
|
+
attr_accessor :reportName
|
404
|
+
attr_accessor :returnOnlyCompleteData
|
405
|
+
attr_accessor :aggregation
|
406
|
+
attr_accessor :columns
|
407
|
+
attr_accessor :filter
|
408
|
+
attr_accessor :scope
|
409
|
+
attr_accessor :time
|
410
|
+
|
411
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
412
|
+
@format = format
|
413
|
+
@language = language
|
414
|
+
@reportName = reportName
|
415
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
416
|
+
@aggregation = aggregation
|
417
|
+
@columns = columns
|
418
|
+
@filter = filter
|
419
|
+
@scope = scope
|
420
|
+
@time = time
|
421
|
+
end
|
422
|
+
end
|
423
|
+
|
424
|
+
# {https://adcenter.microsoft.com/v7}SitePerformanceReportRequest
|
425
|
+
# format - ReportFormat
|
426
|
+
# language - ReportLanguage
|
427
|
+
# reportName - SOAP::SOAPString
|
428
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
429
|
+
# aggregation - ReportAggregation
|
430
|
+
# columns - ArrayOfSitePerformanceReportColumn
|
431
|
+
# filter - SitePerformanceReportFilter
|
432
|
+
# scope - AccountThroughAdGroupReportScope
|
433
|
+
# time - ReportTime
|
434
|
+
class SitePerformanceReportRequest < ReportRequest
|
435
|
+
attr_accessor :format
|
436
|
+
attr_accessor :language
|
437
|
+
attr_accessor :reportName
|
438
|
+
attr_accessor :returnOnlyCompleteData
|
439
|
+
attr_accessor :aggregation
|
440
|
+
attr_accessor :columns
|
441
|
+
attr_accessor :filter
|
442
|
+
attr_accessor :scope
|
443
|
+
attr_accessor :time
|
444
|
+
|
445
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
446
|
+
@format = format
|
447
|
+
@language = language
|
448
|
+
@reportName = reportName
|
449
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
450
|
+
@aggregation = aggregation
|
451
|
+
@columns = columns
|
452
|
+
@filter = filter
|
453
|
+
@scope = scope
|
454
|
+
@time = time
|
455
|
+
end
|
456
|
+
end
|
457
|
+
|
458
|
+
# {https://adcenter.microsoft.com/v7}BehavioralTargetReportRequest
|
459
|
+
# format - ReportFormat
|
460
|
+
# language - ReportLanguage
|
461
|
+
# reportName - SOAP::SOAPString
|
462
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
463
|
+
# aggregation - NonHourlyReportAggregation
|
464
|
+
# columns - ArrayOfBehavioralTargetReportColumn
|
465
|
+
# filter - BehavioralTargetReportFilter
|
466
|
+
# scope - AccountThroughAdGroupReportScope
|
467
|
+
# time - ReportTime
|
468
|
+
class BehavioralTargetReportRequest < ReportRequest
|
469
|
+
attr_accessor :format
|
470
|
+
attr_accessor :language
|
471
|
+
attr_accessor :reportName
|
472
|
+
attr_accessor :returnOnlyCompleteData
|
473
|
+
attr_accessor :aggregation
|
474
|
+
attr_accessor :columns
|
475
|
+
attr_accessor :filter
|
476
|
+
attr_accessor :scope
|
477
|
+
attr_accessor :time
|
478
|
+
|
479
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
480
|
+
@format = format
|
481
|
+
@language = language
|
482
|
+
@reportName = reportName
|
483
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
484
|
+
@aggregation = aggregation
|
485
|
+
@columns = columns
|
486
|
+
@filter = filter
|
487
|
+
@scope = scope
|
488
|
+
@time = time
|
489
|
+
end
|
490
|
+
end
|
491
|
+
|
492
|
+
# {https://adcenter.microsoft.com/v7}BehavioralPerformanceReportRequest
|
493
|
+
# format - ReportFormat
|
494
|
+
# language - ReportLanguage
|
495
|
+
# reportName - SOAP::SOAPString
|
496
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
497
|
+
# aggregation - ReportAggregation
|
498
|
+
# columns - ArrayOfBehavioralPerformanceReportColumn
|
499
|
+
# filter - BehavioralPerformanceReportFilter
|
500
|
+
# scope - AccountThroughAdGroupReportScope
|
501
|
+
# time - ReportTime
|
502
|
+
class BehavioralPerformanceReportRequest < ReportRequest
|
503
|
+
attr_accessor :format
|
504
|
+
attr_accessor :language
|
505
|
+
attr_accessor :reportName
|
506
|
+
attr_accessor :returnOnlyCompleteData
|
507
|
+
attr_accessor :aggregation
|
508
|
+
attr_accessor :columns
|
509
|
+
attr_accessor :filter
|
510
|
+
attr_accessor :scope
|
511
|
+
attr_accessor :time
|
512
|
+
|
513
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
514
|
+
@format = format
|
515
|
+
@language = language
|
516
|
+
@reportName = reportName
|
517
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
518
|
+
@aggregation = aggregation
|
519
|
+
@columns = columns
|
520
|
+
@filter = filter
|
521
|
+
@scope = scope
|
522
|
+
@time = time
|
523
|
+
end
|
524
|
+
end
|
525
|
+
|
526
|
+
# {https://adcenter.microsoft.com/v7}SearchQueryPerformanceReportRequest
|
527
|
+
# format - ReportFormat
|
528
|
+
# language - ReportLanguage
|
529
|
+
# reportName - SOAP::SOAPString
|
530
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
531
|
+
# aggregation - SearchQueryReportAggregation
|
532
|
+
# columns - ArrayOfSearchQueryPerformanceReportColumn
|
533
|
+
# filter - SearchQueryPerformanceReportFilter
|
534
|
+
# scope - AccountThroughAdGroupReportScope
|
535
|
+
# time - ReportTime
|
536
|
+
class SearchQueryPerformanceReportRequest < ReportRequest
|
537
|
+
attr_accessor :format
|
538
|
+
attr_accessor :language
|
539
|
+
attr_accessor :reportName
|
540
|
+
attr_accessor :returnOnlyCompleteData
|
541
|
+
attr_accessor :aggregation
|
542
|
+
attr_accessor :columns
|
543
|
+
attr_accessor :filter
|
544
|
+
attr_accessor :scope
|
545
|
+
attr_accessor :time
|
546
|
+
|
547
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
548
|
+
@format = format
|
549
|
+
@language = language
|
550
|
+
@reportName = reportName
|
551
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
552
|
+
@aggregation = aggregation
|
553
|
+
@columns = columns
|
554
|
+
@filter = filter
|
555
|
+
@scope = scope
|
556
|
+
@time = time
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
560
|
+
# {https://adcenter.microsoft.com/v7}ConversionPerformanceReportRequest
|
561
|
+
# format - ReportFormat
|
562
|
+
# language - ReportLanguage
|
563
|
+
# reportName - SOAP::SOAPString
|
564
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
565
|
+
# aggregation - NonHourlyReportAggregation
|
566
|
+
# columns - ArrayOfConversionPerformanceReportColumn
|
567
|
+
# filter - ConversionPerformanceReportFilter
|
568
|
+
# scope - AccountThroughAdGroupReportScope
|
569
|
+
# time - ReportTime
|
570
|
+
class ConversionPerformanceReportRequest < ReportRequest
|
571
|
+
attr_accessor :format
|
572
|
+
attr_accessor :language
|
573
|
+
attr_accessor :reportName
|
574
|
+
attr_accessor :returnOnlyCompleteData
|
575
|
+
attr_accessor :aggregation
|
576
|
+
attr_accessor :columns
|
577
|
+
attr_accessor :filter
|
578
|
+
attr_accessor :scope
|
579
|
+
attr_accessor :time
|
580
|
+
|
581
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
582
|
+
@format = format
|
583
|
+
@language = language
|
584
|
+
@reportName = reportName
|
585
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
586
|
+
@aggregation = aggregation
|
587
|
+
@columns = columns
|
588
|
+
@filter = filter
|
589
|
+
@scope = scope
|
590
|
+
@time = time
|
591
|
+
end
|
592
|
+
end
|
593
|
+
|
594
|
+
# {https://adcenter.microsoft.com/v7}GoalsAndFunnelsReportRequest
|
595
|
+
# format - ReportFormat
|
596
|
+
# language - ReportLanguage
|
597
|
+
# reportName - SOAP::SOAPString
|
598
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
599
|
+
# aggregation - NonHourlyReportAggregation
|
600
|
+
# columns - ArrayOfGoalsAndFunnelsReportColumn
|
601
|
+
# filter - GoalsAndFunnelsReportFilter
|
602
|
+
# scope - AccountThroughAdGroupReportScope
|
603
|
+
# time - ReportTime
|
604
|
+
class GoalsAndFunnelsReportRequest < ReportRequest
|
605
|
+
attr_accessor :format
|
606
|
+
attr_accessor :language
|
607
|
+
attr_accessor :reportName
|
608
|
+
attr_accessor :returnOnlyCompleteData
|
609
|
+
attr_accessor :aggregation
|
610
|
+
attr_accessor :columns
|
611
|
+
attr_accessor :filter
|
612
|
+
attr_accessor :scope
|
613
|
+
attr_accessor :time
|
614
|
+
|
615
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
616
|
+
@format = format
|
617
|
+
@language = language
|
618
|
+
@reportName = reportName
|
619
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
620
|
+
@aggregation = aggregation
|
621
|
+
@columns = columns
|
622
|
+
@filter = filter
|
623
|
+
@scope = scope
|
624
|
+
@time = time
|
625
|
+
end
|
626
|
+
end
|
627
|
+
|
628
|
+
# {https://adcenter.microsoft.com/v7}TrafficSourcesReportRequest
|
629
|
+
# format - ReportFormat
|
630
|
+
# language - ReportLanguage
|
631
|
+
# reportName - SOAP::SOAPString
|
632
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
633
|
+
# aggregation - NonHourlyReportAggregation
|
634
|
+
# columns - ArrayOfTrafficSourcesReportColumn
|
635
|
+
# filter - TrafficSourcesReportFilter
|
636
|
+
# scope - AccountReportScope
|
637
|
+
# time - ReportTime
|
638
|
+
class TrafficSourcesReportRequest < ReportRequest
|
639
|
+
attr_accessor :format
|
640
|
+
attr_accessor :language
|
641
|
+
attr_accessor :reportName
|
642
|
+
attr_accessor :returnOnlyCompleteData
|
643
|
+
attr_accessor :aggregation
|
644
|
+
attr_accessor :columns
|
645
|
+
attr_accessor :filter
|
646
|
+
attr_accessor :scope
|
647
|
+
attr_accessor :time
|
648
|
+
|
649
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
650
|
+
@format = format
|
651
|
+
@language = language
|
652
|
+
@reportName = reportName
|
653
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
654
|
+
@aggregation = aggregation
|
655
|
+
@columns = columns
|
656
|
+
@filter = filter
|
657
|
+
@scope = scope
|
658
|
+
@time = time
|
659
|
+
end
|
660
|
+
end
|
661
|
+
|
662
|
+
# {https://adcenter.microsoft.com/v7}SegmentationReportRequest
|
663
|
+
# format - ReportFormat
|
664
|
+
# language - ReportLanguage
|
665
|
+
# reportName - SOAP::SOAPString
|
666
|
+
# returnOnlyCompleteData - SOAP::SOAPBoolean
|
667
|
+
# aggregation - NonHourlyReportAggregation
|
668
|
+
# columns - ArrayOfSegmentationReportColumn
|
669
|
+
# filter - SegmentationReportFilter
|
670
|
+
# scope - AccountThroughAdGroupReportScope
|
671
|
+
# time - ReportTime
|
672
|
+
class SegmentationReportRequest < ReportRequest
|
673
|
+
attr_accessor :format
|
674
|
+
attr_accessor :language
|
675
|
+
attr_accessor :reportName
|
676
|
+
attr_accessor :returnOnlyCompleteData
|
677
|
+
attr_accessor :aggregation
|
678
|
+
attr_accessor :columns
|
679
|
+
attr_accessor :filter
|
680
|
+
attr_accessor :scope
|
681
|
+
attr_accessor :time
|
682
|
+
|
683
|
+
def initialize(format = nil, language = nil, reportName = nil, returnOnlyCompleteData = nil, aggregation = nil, columns = nil, filter = nil, scope = nil, time = nil)
|
684
|
+
@format = format
|
685
|
+
@language = language
|
686
|
+
@reportName = reportName
|
687
|
+
@returnOnlyCompleteData = returnOnlyCompleteData
|
688
|
+
@aggregation = aggregation
|
689
|
+
@columns = columns
|
690
|
+
@filter = filter
|
691
|
+
@scope = scope
|
692
|
+
@time = time
|
693
|
+
end
|
694
|
+
end
|
695
|
+
|
696
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAdDynamicTextPerformanceReportColumn
|
697
|
+
class ArrayOfAdDynamicTextPerformanceReportColumn < ::Array
|
698
|
+
end
|
699
|
+
|
700
|
+
# {https://adcenter.microsoft.com/v7}AdDynamicTextPerformanceReportFilter
|
701
|
+
# adDistribution - (any)
|
702
|
+
# adType - (any)
|
703
|
+
# languageAndRegion - (any)
|
704
|
+
class AdDynamicTextPerformanceReportFilter
|
705
|
+
attr_accessor :adDistribution
|
706
|
+
attr_accessor :adType
|
707
|
+
attr_accessor :languageAndRegion
|
708
|
+
|
709
|
+
def initialize(adDistribution = nil, adType = nil, languageAndRegion = nil)
|
710
|
+
@adDistribution = adDistribution
|
711
|
+
@adType = adType
|
712
|
+
@languageAndRegion = languageAndRegion
|
713
|
+
end
|
714
|
+
end
|
715
|
+
|
716
|
+
# {https://adcenter.microsoft.com/v7}AccountThroughAdGroupReportScope
|
717
|
+
# accountIds - ArrayOflong
|
718
|
+
# adGroups - ArrayOfAdGroupReportScope
|
719
|
+
# campaigns - ArrayOfCampaignReportScope
|
720
|
+
class AccountThroughAdGroupReportScope
|
721
|
+
attr_accessor :accountIds
|
722
|
+
attr_accessor :adGroups
|
723
|
+
attr_accessor :campaigns
|
724
|
+
|
725
|
+
def initialize(accountIds = nil, adGroups = nil, campaigns = nil)
|
726
|
+
@accountIds = accountIds
|
727
|
+
@adGroups = adGroups
|
728
|
+
@campaigns = campaigns
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
732
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAdGroupReportScope
|
733
|
+
class ArrayOfAdGroupReportScope < ::Array
|
734
|
+
end
|
735
|
+
|
736
|
+
# {https://adcenter.microsoft.com/v7}AdGroupReportScope
|
737
|
+
# parentAccountId - SOAP::SOAPLong
|
738
|
+
# parentCampaignId - SOAP::SOAPLong
|
739
|
+
# adGroupId - SOAP::SOAPLong
|
740
|
+
class AdGroupReportScope
|
741
|
+
attr_accessor :parentAccountId
|
742
|
+
attr_accessor :parentCampaignId
|
743
|
+
attr_accessor :adGroupId
|
744
|
+
|
745
|
+
def initialize(parentAccountId = nil, parentCampaignId = nil, adGroupId = nil)
|
746
|
+
@parentAccountId = parentAccountId
|
747
|
+
@parentCampaignId = parentCampaignId
|
748
|
+
@adGroupId = adGroupId
|
749
|
+
end
|
750
|
+
end
|
751
|
+
|
752
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfCampaignReportScope
|
753
|
+
class ArrayOfCampaignReportScope < ::Array
|
754
|
+
end
|
755
|
+
|
756
|
+
# {https://adcenter.microsoft.com/v7}CampaignReportScope
|
757
|
+
# parentAccountId - SOAP::SOAPLong
|
758
|
+
# campaignId - SOAP::SOAPLong
|
759
|
+
class CampaignReportScope
|
760
|
+
attr_accessor :parentAccountId
|
761
|
+
attr_accessor :campaignId
|
762
|
+
|
763
|
+
def initialize(parentAccountId = nil, campaignId = nil)
|
764
|
+
@parentAccountId = parentAccountId
|
765
|
+
@campaignId = campaignId
|
766
|
+
end
|
767
|
+
end
|
768
|
+
|
769
|
+
# {https://adcenter.microsoft.com/v7}ReportTime
|
770
|
+
# customDateRangeEnd - Date
|
771
|
+
# customDateRangeStart - Date
|
772
|
+
# predefinedTime - ReportTimePeriod
|
773
|
+
class ReportTime
|
774
|
+
attr_accessor :customDateRangeEnd
|
775
|
+
attr_accessor :customDateRangeStart
|
776
|
+
attr_accessor :predefinedTime
|
777
|
+
|
778
|
+
def initialize(customDateRangeEnd = nil, customDateRangeStart = nil, predefinedTime = nil)
|
779
|
+
@customDateRangeEnd = customDateRangeEnd
|
780
|
+
@customDateRangeStart = customDateRangeStart
|
781
|
+
@predefinedTime = predefinedTime
|
782
|
+
end
|
783
|
+
end
|
784
|
+
|
785
|
+
# # {https://adcenter.microsoft.com/v7}Date
|
786
|
+
# # day - SOAP::SOAPInt
|
787
|
+
# # month - SOAP::SOAPInt
|
788
|
+
# # year - SOAP::SOAPInt
|
789
|
+
# class Date
|
790
|
+
# attr_accessor :day
|
791
|
+
# attr_accessor :month
|
792
|
+
# attr_accessor :year
|
793
|
+
#
|
794
|
+
# def initialize(day = nil, month = nil, year = nil)
|
795
|
+
# @day = day
|
796
|
+
# @month = month
|
797
|
+
# @year = year
|
798
|
+
# end
|
799
|
+
# end
|
800
|
+
|
801
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfKeywordPerformanceReportColumn
|
802
|
+
class ArrayOfKeywordPerformanceReportColumn < ::Array
|
803
|
+
end
|
804
|
+
|
805
|
+
# {https://adcenter.microsoft.com/v7}KeywordPerformanceReportFilter
|
806
|
+
# adDistribution - (any)
|
807
|
+
# adType - (any)
|
808
|
+
# bidMatchType - (any)
|
809
|
+
# cashback - (any)
|
810
|
+
# deliveredMatchType - (any)
|
811
|
+
# keywords - ArrayOfstring
|
812
|
+
# languageAndRegion - (any)
|
813
|
+
class KeywordPerformanceReportFilter
|
814
|
+
attr_accessor :adDistribution
|
815
|
+
attr_accessor :adType
|
816
|
+
attr_accessor :bidMatchType
|
817
|
+
attr_accessor :cashback
|
818
|
+
attr_accessor :deliveredMatchType
|
819
|
+
attr_accessor :keywords
|
820
|
+
attr_accessor :languageAndRegion
|
821
|
+
|
822
|
+
def initialize(adDistribution = nil, adType = nil, bidMatchType = nil, cashback = nil, deliveredMatchType = nil, keywords = nil, languageAndRegion = nil)
|
823
|
+
@adDistribution = adDistribution
|
824
|
+
@adType = adType
|
825
|
+
@bidMatchType = bidMatchType
|
826
|
+
@cashback = cashback
|
827
|
+
@deliveredMatchType = deliveredMatchType
|
828
|
+
@keywords = keywords
|
829
|
+
@languageAndRegion = languageAndRegion
|
830
|
+
end
|
831
|
+
end
|
832
|
+
|
833
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfDestinationUrlPerformanceReportColumn
|
834
|
+
class ArrayOfDestinationUrlPerformanceReportColumn < ::Array
|
835
|
+
end
|
836
|
+
|
837
|
+
# {https://adcenter.microsoft.com/v7}DestinationUrlPerformanceReportFilter
|
838
|
+
# adDistribution - (any)
|
839
|
+
# languageAndRegion - (any)
|
840
|
+
class DestinationUrlPerformanceReportFilter
|
841
|
+
attr_accessor :adDistribution
|
842
|
+
attr_accessor :languageAndRegion
|
843
|
+
|
844
|
+
def initialize(adDistribution = nil, languageAndRegion = nil)
|
845
|
+
@adDistribution = adDistribution
|
846
|
+
@languageAndRegion = languageAndRegion
|
847
|
+
end
|
848
|
+
end
|
849
|
+
|
850
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfTacticChannelReportColumn
|
851
|
+
class ArrayOfTacticChannelReportColumn < ::Array
|
852
|
+
end
|
853
|
+
|
854
|
+
# {https://adcenter.microsoft.com/v7}TacticChannelReportFilter
|
855
|
+
# channelIds - ArrayOflong
|
856
|
+
# tacticIds - ArrayOflong
|
857
|
+
# thirdPartyAdGroupIds - ArrayOflong
|
858
|
+
# thirdPartyCampaignIds - ArrayOflong
|
859
|
+
class TacticChannelReportFilter
|
860
|
+
attr_accessor :channelIds
|
861
|
+
attr_accessor :tacticIds
|
862
|
+
attr_accessor :thirdPartyAdGroupIds
|
863
|
+
attr_accessor :thirdPartyCampaignIds
|
864
|
+
|
865
|
+
def initialize(channelIds = nil, tacticIds = nil, thirdPartyAdGroupIds = nil, thirdPartyCampaignIds = nil)
|
866
|
+
@channelIds = channelIds
|
867
|
+
@tacticIds = tacticIds
|
868
|
+
@thirdPartyAdGroupIds = thirdPartyAdGroupIds
|
869
|
+
@thirdPartyCampaignIds = thirdPartyCampaignIds
|
870
|
+
end
|
871
|
+
end
|
872
|
+
|
873
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAccountPerformanceReportColumn
|
874
|
+
class ArrayOfAccountPerformanceReportColumn < ::Array
|
875
|
+
end
|
876
|
+
|
877
|
+
# {https://adcenter.microsoft.com/v7}AccountPerformanceReportFilter
|
878
|
+
# adDistribution - (any)
|
879
|
+
# deviceType - (any)
|
880
|
+
class AccountPerformanceReportFilter
|
881
|
+
attr_accessor :adDistribution
|
882
|
+
attr_accessor :deviceType
|
883
|
+
|
884
|
+
def initialize(adDistribution = nil, deviceType = nil)
|
885
|
+
@adDistribution = adDistribution
|
886
|
+
@deviceType = deviceType
|
887
|
+
end
|
888
|
+
end
|
889
|
+
|
890
|
+
# {https://adcenter.microsoft.com/v7}AccountReportScope
|
891
|
+
# accountIds - ArrayOflong
|
892
|
+
class AccountReportScope
|
893
|
+
attr_accessor :accountIds
|
894
|
+
|
895
|
+
def initialize(accountIds = nil)
|
896
|
+
@accountIds = accountIds
|
897
|
+
end
|
898
|
+
end
|
899
|
+
|
900
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfCampaignPerformanceReportColumn
|
901
|
+
class ArrayOfCampaignPerformanceReportColumn < ::Array
|
902
|
+
end
|
903
|
+
|
904
|
+
# {https://adcenter.microsoft.com/v7}CampaignPerformanceReportFilter
|
905
|
+
# adDistribution - (any)
|
906
|
+
# deviceType - (any)
|
907
|
+
# status - (any)
|
908
|
+
class CampaignPerformanceReportFilter
|
909
|
+
attr_accessor :adDistribution
|
910
|
+
attr_accessor :deviceType
|
911
|
+
attr_accessor :status
|
912
|
+
|
913
|
+
def initialize(adDistribution = nil, deviceType = nil, status = nil)
|
914
|
+
@adDistribution = adDistribution
|
915
|
+
@deviceType = deviceType
|
916
|
+
@status = status
|
917
|
+
end
|
918
|
+
end
|
919
|
+
|
920
|
+
# {https://adcenter.microsoft.com/v7}AccountThroughCampaignReportScope
|
921
|
+
# accountIds - ArrayOflong
|
922
|
+
# campaigns - ArrayOfCampaignReportScope
|
923
|
+
class AccountThroughCampaignReportScope
|
924
|
+
attr_accessor :accountIds
|
925
|
+
attr_accessor :campaigns
|
926
|
+
|
927
|
+
def initialize(accountIds = nil, campaigns = nil)
|
928
|
+
@accountIds = accountIds
|
929
|
+
@campaigns = campaigns
|
930
|
+
end
|
931
|
+
end
|
932
|
+
|
933
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAdGroupPerformanceReportColumn
|
934
|
+
class ArrayOfAdGroupPerformanceReportColumn < ::Array
|
935
|
+
end
|
936
|
+
|
937
|
+
# {https://adcenter.microsoft.com/v7}AdGroupPerformanceReportFilter
|
938
|
+
# adDistribution - (any)
|
939
|
+
# deviceType - (any)
|
940
|
+
# languageAndRegion - (any)
|
941
|
+
# status - (any)
|
942
|
+
class AdGroupPerformanceReportFilter
|
943
|
+
attr_accessor :adDistribution
|
944
|
+
attr_accessor :deviceType
|
945
|
+
attr_accessor :languageAndRegion
|
946
|
+
attr_accessor :status
|
947
|
+
|
948
|
+
def initialize(adDistribution = nil, deviceType = nil, languageAndRegion = nil, status = nil)
|
949
|
+
@adDistribution = adDistribution
|
950
|
+
@deviceType = deviceType
|
951
|
+
@languageAndRegion = languageAndRegion
|
952
|
+
@status = status
|
953
|
+
end
|
954
|
+
end
|
955
|
+
|
956
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAdPerformanceReportColumn
|
957
|
+
class ArrayOfAdPerformanceReportColumn < ::Array
|
958
|
+
end
|
959
|
+
|
960
|
+
# {https://adcenter.microsoft.com/v7}AdPerformanceReportFilter
|
961
|
+
# adDistribution - (any)
|
962
|
+
# adType - (any)
|
963
|
+
# languageAndRegion - (any)
|
964
|
+
class AdPerformanceReportFilter
|
965
|
+
attr_accessor :adDistribution
|
966
|
+
attr_accessor :adType
|
967
|
+
attr_accessor :languageAndRegion
|
968
|
+
|
969
|
+
def initialize(adDistribution = nil, adType = nil, languageAndRegion = nil)
|
970
|
+
@adDistribution = adDistribution
|
971
|
+
@adType = adType
|
972
|
+
@languageAndRegion = languageAndRegion
|
973
|
+
end
|
974
|
+
end
|
975
|
+
|
976
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfBudgetSummaryReportColumn
|
977
|
+
class ArrayOfBudgetSummaryReportColumn < ::Array
|
978
|
+
end
|
979
|
+
|
980
|
+
# {https://adcenter.microsoft.com/v7}BudgetSummaryReportTime
|
981
|
+
# customDateRangeEnd - Date
|
982
|
+
# customDateRangeStart - Date
|
983
|
+
# predefinedTime - BudgetSummaryReportTimePeriod
|
984
|
+
class BudgetSummaryReportTime
|
985
|
+
attr_accessor :customDateRangeEnd
|
986
|
+
attr_accessor :customDateRangeStart
|
987
|
+
attr_accessor :predefinedTime
|
988
|
+
|
989
|
+
def initialize(customDateRangeEnd = nil, customDateRangeStart = nil, predefinedTime = nil)
|
990
|
+
@customDateRangeEnd = customDateRangeEnd
|
991
|
+
@customDateRangeStart = customDateRangeStart
|
992
|
+
@predefinedTime = predefinedTime
|
993
|
+
end
|
994
|
+
end
|
995
|
+
|
996
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfAgeGenderDemographicReportColumn
|
997
|
+
class ArrayOfAgeGenderDemographicReportColumn < ::Array
|
998
|
+
end
|
999
|
+
|
1000
|
+
# {https://adcenter.microsoft.com/v7}AgeGenderDemographicReportFilter
|
1001
|
+
# adDistribution - (any)
|
1002
|
+
# languageAndRegion - (any)
|
1003
|
+
class AgeGenderDemographicReportFilter
|
1004
|
+
attr_accessor :adDistribution
|
1005
|
+
attr_accessor :languageAndRegion
|
1006
|
+
|
1007
|
+
def initialize(adDistribution = nil, languageAndRegion = nil)
|
1008
|
+
@adDistribution = adDistribution
|
1009
|
+
@languageAndRegion = languageAndRegion
|
1010
|
+
end
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfMetroAreaDemographicReportColumn
|
1014
|
+
class ArrayOfMetroAreaDemographicReportColumn < ::Array
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
# {https://adcenter.microsoft.com/v7}MetroAreaDemographicReportFilter
|
1018
|
+
# adDistribution - (any)
|
1019
|
+
# country - (any)
|
1020
|
+
# languageAndRegion - (any)
|
1021
|
+
class MetroAreaDemographicReportFilter
|
1022
|
+
attr_accessor :adDistribution
|
1023
|
+
attr_accessor :country
|
1024
|
+
attr_accessor :languageAndRegion
|
1025
|
+
|
1026
|
+
def initialize(adDistribution = nil, country = nil, languageAndRegion = nil)
|
1027
|
+
@adDistribution = adDistribution
|
1028
|
+
@country = country
|
1029
|
+
@languageAndRegion = languageAndRegion
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfPublisherUsagePerformanceReportColumn
|
1034
|
+
class ArrayOfPublisherUsagePerformanceReportColumn < ::Array
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
# {https://adcenter.microsoft.com/v7}PublisherUsagePerformanceReportFilter
|
1038
|
+
# adDistribution - (any)
|
1039
|
+
# languageAndRegion - (any)
|
1040
|
+
class PublisherUsagePerformanceReportFilter
|
1041
|
+
attr_accessor :adDistribution
|
1042
|
+
attr_accessor :languageAndRegion
|
1043
|
+
|
1044
|
+
def initialize(adDistribution = nil, languageAndRegion = nil)
|
1045
|
+
@adDistribution = adDistribution
|
1046
|
+
@languageAndRegion = languageAndRegion
|
1047
|
+
end
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfSitePerformanceReportColumn
|
1051
|
+
class ArrayOfSitePerformanceReportColumn < ::Array
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
# {https://adcenter.microsoft.com/v7}SitePerformanceReportFilter
|
1055
|
+
# adDistribution - (any)
|
1056
|
+
# adType - (any)
|
1057
|
+
# deliveredMatchType - (any)
|
1058
|
+
# languageAndRegion - (any)
|
1059
|
+
# siteIds - ArrayOflong
|
1060
|
+
class SitePerformanceReportFilter
|
1061
|
+
attr_accessor :adDistribution
|
1062
|
+
attr_accessor :adType
|
1063
|
+
attr_accessor :deliveredMatchType
|
1064
|
+
attr_accessor :languageAndRegion
|
1065
|
+
attr_accessor :siteIds
|
1066
|
+
|
1067
|
+
def initialize(adDistribution = nil, adType = nil, deliveredMatchType = nil, languageAndRegion = nil, siteIds = nil)
|
1068
|
+
@adDistribution = adDistribution
|
1069
|
+
@adType = adType
|
1070
|
+
@deliveredMatchType = deliveredMatchType
|
1071
|
+
@languageAndRegion = languageAndRegion
|
1072
|
+
@siteIds = siteIds
|
1073
|
+
end
|
1074
|
+
end
|
1075
|
+
|
1076
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfBehavioralTargetReportColumn
|
1077
|
+
class ArrayOfBehavioralTargetReportColumn < ::Array
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
# {https://adcenter.microsoft.com/v7}BehavioralTargetReportFilter
|
1081
|
+
# adDistribution - (any)
|
1082
|
+
# behavioralIds - ArrayOflong
|
1083
|
+
# languageAndRegion - (any)
|
1084
|
+
class BehavioralTargetReportFilter
|
1085
|
+
attr_accessor :adDistribution
|
1086
|
+
attr_accessor :behavioralIds
|
1087
|
+
attr_accessor :languageAndRegion
|
1088
|
+
|
1089
|
+
def initialize(adDistribution = nil, behavioralIds = nil, languageAndRegion = nil)
|
1090
|
+
@adDistribution = adDistribution
|
1091
|
+
@behavioralIds = behavioralIds
|
1092
|
+
@languageAndRegion = languageAndRegion
|
1093
|
+
end
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfBehavioralPerformanceReportColumn
|
1097
|
+
class ArrayOfBehavioralPerformanceReportColumn < ::Array
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
# {https://adcenter.microsoft.com/v7}BehavioralPerformanceReportFilter
|
1101
|
+
# adDistribution - (any)
|
1102
|
+
# adType - (any)
|
1103
|
+
# behavioralIds - ArrayOflong
|
1104
|
+
# deliveredMatchType - (any)
|
1105
|
+
# languageAndRegion - (any)
|
1106
|
+
class BehavioralPerformanceReportFilter
|
1107
|
+
attr_accessor :adDistribution
|
1108
|
+
attr_accessor :adType
|
1109
|
+
attr_accessor :behavioralIds
|
1110
|
+
attr_accessor :deliveredMatchType
|
1111
|
+
attr_accessor :languageAndRegion
|
1112
|
+
|
1113
|
+
def initialize(adDistribution = nil, adType = nil, behavioralIds = nil, deliveredMatchType = nil, languageAndRegion = nil)
|
1114
|
+
@adDistribution = adDistribution
|
1115
|
+
@adType = adType
|
1116
|
+
@behavioralIds = behavioralIds
|
1117
|
+
@deliveredMatchType = deliveredMatchType
|
1118
|
+
@languageAndRegion = languageAndRegion
|
1119
|
+
end
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfSearchQueryPerformanceReportColumn
|
1123
|
+
class ArrayOfSearchQueryPerformanceReportColumn < ::Array
|
1124
|
+
end
|
1125
|
+
|
1126
|
+
# {https://adcenter.microsoft.com/v7}SearchQueryPerformanceReportFilter
|
1127
|
+
# adStatus - (any)
|
1128
|
+
# adType - (any)
|
1129
|
+
# campaignStatus - (any)
|
1130
|
+
# deliveredMatchType - (any)
|
1131
|
+
# languageAndRegion - (any)
|
1132
|
+
# searchQueries - ArrayOfstring
|
1133
|
+
class SearchQueryPerformanceReportFilter
|
1134
|
+
attr_accessor :adStatus
|
1135
|
+
attr_accessor :adType
|
1136
|
+
attr_accessor :campaignStatus
|
1137
|
+
attr_accessor :deliveredMatchType
|
1138
|
+
attr_accessor :languageAndRegion
|
1139
|
+
attr_accessor :searchQueries
|
1140
|
+
|
1141
|
+
def initialize(adStatus = nil, adType = nil, campaignStatus = nil, deliveredMatchType = nil, languageAndRegion = nil, searchQueries = nil)
|
1142
|
+
@adStatus = adStatus
|
1143
|
+
@adType = adType
|
1144
|
+
@campaignStatus = campaignStatus
|
1145
|
+
@deliveredMatchType = deliveredMatchType
|
1146
|
+
@languageAndRegion = languageAndRegion
|
1147
|
+
@searchQueries = searchQueries
|
1148
|
+
end
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfConversionPerformanceReportColumn
|
1152
|
+
class ArrayOfConversionPerformanceReportColumn < ::Array
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
# {https://adcenter.microsoft.com/v7}ConversionPerformanceReportFilter
|
1156
|
+
# keywords - ArrayOfstring
|
1157
|
+
class ConversionPerformanceReportFilter
|
1158
|
+
attr_accessor :keywords
|
1159
|
+
|
1160
|
+
def initialize(keywords = nil)
|
1161
|
+
@keywords = keywords
|
1162
|
+
end
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfGoalsAndFunnelsReportColumn
|
1166
|
+
class ArrayOfGoalsAndFunnelsReportColumn < ::Array
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
# {https://adcenter.microsoft.com/v7}GoalsAndFunnelsReportFilter
|
1170
|
+
# goalIds - ArrayOflong
|
1171
|
+
class GoalsAndFunnelsReportFilter
|
1172
|
+
attr_accessor :goalIds
|
1173
|
+
|
1174
|
+
def initialize(goalIds = nil)
|
1175
|
+
@goalIds = goalIds
|
1176
|
+
end
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfTrafficSourcesReportColumn
|
1180
|
+
class ArrayOfTrafficSourcesReportColumn < ::Array
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
# {https://adcenter.microsoft.com/v7}TrafficSourcesReportFilter
|
1184
|
+
# goalIds - ArrayOflong
|
1185
|
+
class TrafficSourcesReportFilter
|
1186
|
+
attr_accessor :goalIds
|
1187
|
+
|
1188
|
+
def initialize(goalIds = nil)
|
1189
|
+
@goalIds = goalIds
|
1190
|
+
end
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfSegmentationReportColumn
|
1194
|
+
class ArrayOfSegmentationReportColumn < ::Array
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
# {https://adcenter.microsoft.com/v7}SegmentationReportFilter
|
1198
|
+
# ageGroup - (any)
|
1199
|
+
# country - (any)
|
1200
|
+
# gender - (any)
|
1201
|
+
# goalIds - ArrayOflong
|
1202
|
+
# keywords - ArrayOfstring
|
1203
|
+
class SegmentationReportFilter
|
1204
|
+
attr_accessor :ageGroup
|
1205
|
+
attr_accessor :country
|
1206
|
+
attr_accessor :gender
|
1207
|
+
attr_accessor :goalIds
|
1208
|
+
attr_accessor :keywords
|
1209
|
+
|
1210
|
+
def initialize(ageGroup = nil, country = nil, gender = nil, goalIds = nil, keywords = nil)
|
1211
|
+
@ageGroup = ageGroup
|
1212
|
+
@country = country
|
1213
|
+
@gender = gender
|
1214
|
+
@goalIds = goalIds
|
1215
|
+
@keywords = keywords
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfBatchError
|
1220
|
+
class ArrayOfBatchError < ::Array
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
# # {https://adcenter.microsoft.com/v7}BatchError
|
1224
|
+
# # code - SOAP::SOAPInt
|
1225
|
+
# # details - SOAP::SOAPString
|
1226
|
+
# # errorCode - SOAP::SOAPString
|
1227
|
+
# # index - SOAP::SOAPInt
|
1228
|
+
# # message - SOAP::SOAPString
|
1229
|
+
# class BatchError
|
1230
|
+
# attr_accessor :code
|
1231
|
+
# attr_accessor :details
|
1232
|
+
# attr_accessor :errorCode
|
1233
|
+
# attr_accessor :index
|
1234
|
+
# attr_accessor :message
|
1235
|
+
#
|
1236
|
+
# def initialize(code = nil, details = nil, errorCode = nil, index = nil, message = nil)
|
1237
|
+
# @code = code
|
1238
|
+
# @details = details
|
1239
|
+
# @errorCode = errorCode
|
1240
|
+
# @index = index
|
1241
|
+
# @message = message
|
1242
|
+
# end
|
1243
|
+
# end
|
1244
|
+
|
1245
|
+
# {https://adcenter.microsoft.com/v7}ArrayOfOperationError
|
1246
|
+
class ArrayOfOperationError < ::Array
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
# # {https://adcenter.microsoft.com/v7}OperationError
|
1250
|
+
# # code - SOAP::SOAPInt
|
1251
|
+
# # details - SOAP::SOAPString
|
1252
|
+
# # errorCode - SOAP::SOAPString
|
1253
|
+
# # message - SOAP::SOAPString
|
1254
|
+
# class OperationError
|
1255
|
+
# attr_accessor :code
|
1256
|
+
# attr_accessor :details
|
1257
|
+
# attr_accessor :errorCode
|
1258
|
+
# attr_accessor :message
|
1259
|
+
#
|
1260
|
+
# def initialize(code = nil, details = nil, errorCode = nil, message = nil)
|
1261
|
+
# @code = code
|
1262
|
+
# @details = details
|
1263
|
+
# @errorCode = errorCode
|
1264
|
+
# @message = message
|
1265
|
+
# end
|
1266
|
+
# end
|
1267
|
+
|
1268
|
+
# {https://adcenter.microsoft.com/v7}ReportRequestStatus
|
1269
|
+
# reportDownloadUrl - SOAP::SOAPString
|
1270
|
+
# status - ReportRequestStatusType
|
1271
|
+
class ReportRequestStatus
|
1272
|
+
attr_accessor :reportDownloadUrl
|
1273
|
+
attr_accessor :status
|
1274
|
+
|
1275
|
+
def initialize(reportDownloadUrl = nil, status = nil)
|
1276
|
+
@reportDownloadUrl = reportDownloadUrl
|
1277
|
+
@status = status
|
1278
|
+
end
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
# {http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong
|
1282
|
+
class ArrayOflong < ::Array
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
# {http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring
|
1286
|
+
class ArrayOfstring < ::Array
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
# # {https://adapi.microsoft.com}ApplicationFault
|
1290
|
+
# # trackingId - SOAP::SOAPString
|
1291
|
+
# class ApplicationFault
|
1292
|
+
# attr_accessor :trackingId
|
1293
|
+
#
|
1294
|
+
# def initialize(trackingId = nil)
|
1295
|
+
# @trackingId = trackingId
|
1296
|
+
# end
|
1297
|
+
# end
|
1298
|
+
|
1299
|
+
# # {https://adcenter.microsoft.com/v7}ApiFaultDetail
|
1300
|
+
# # trackingId - SOAP::SOAPString
|
1301
|
+
# # batchErrors - ArrayOfBatchError
|
1302
|
+
# # operationErrors - ArrayOfOperationError
|
1303
|
+
# class ApiFaultDetail < ::StandardError
|
1304
|
+
# attr_accessor :trackingId
|
1305
|
+
# attr_accessor :batchErrors
|
1306
|
+
# attr_accessor :operationErrors
|
1307
|
+
#
|
1308
|
+
# def initialize(trackingId = nil, batchErrors = nil, operationErrors = nil)
|
1309
|
+
# @trackingId = trackingId
|
1310
|
+
# @batchErrors = batchErrors
|
1311
|
+
# @operationErrors = operationErrors
|
1312
|
+
# end
|
1313
|
+
# end
|
1314
|
+
|
1315
|
+
# # {https://adapi.microsoft.com}AdApiFaultDetail
|
1316
|
+
# # trackingId - SOAP::SOAPString
|
1317
|
+
# # errors - ArrayOfAdApiError
|
1318
|
+
# class AdApiFaultDetail < ::StandardError
|
1319
|
+
# attr_accessor :trackingId
|
1320
|
+
# attr_accessor :errors
|
1321
|
+
#
|
1322
|
+
# def initialize(trackingId = nil, errors = nil)
|
1323
|
+
# @trackingId = trackingId
|
1324
|
+
# @errors = errors
|
1325
|
+
# end
|
1326
|
+
# end
|
1327
|
+
|
1328
|
+
# {https://adapi.microsoft.com}ArrayOfAdApiError
|
1329
|
+
class ArrayOfAdApiError < ::Array
|
1330
|
+
end
|
1331
|
+
|
1332
|
+
# # {https://adapi.microsoft.com}AdApiError
|
1333
|
+
# # code - SOAP::SOAPInt
|
1334
|
+
# # detail - SOAP::SOAPString
|
1335
|
+
# # errorCode - SOAP::SOAPString
|
1336
|
+
# # message - SOAP::SOAPString
|
1337
|
+
# class AdApiError
|
1338
|
+
# attr_accessor :code
|
1339
|
+
# attr_accessor :detail
|
1340
|
+
# attr_accessor :errorCode
|
1341
|
+
# attr_accessor :message
|
1342
|
+
#
|
1343
|
+
# def initialize(code = nil, detail = nil, errorCode = nil, message = nil)
|
1344
|
+
# @code = code
|
1345
|
+
# @detail = detail
|
1346
|
+
# @errorCode = errorCode
|
1347
|
+
# @message = message
|
1348
|
+
# end
|
1349
|
+
# end
|
1350
|
+
|
1351
|
+
# {https://adcenter.microsoft.com/v7}ReportFormat
|
1352
|
+
class ReportFormat < ::String
|
1353
|
+
Csv = ReportFormat.new("Csv")
|
1354
|
+
Tsv = ReportFormat.new("Tsv")
|
1355
|
+
Xml = ReportFormat.new("Xml")
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
# {https://adcenter.microsoft.com/v7}ReportLanguage
|
1359
|
+
class ReportLanguage < ::String
|
1360
|
+
English = ReportLanguage.new("English")
|
1361
|
+
French = ReportLanguage.new("French")
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
# {https://adcenter.microsoft.com/v7}NonHourlyReportAggregation
|
1365
|
+
class NonHourlyReportAggregation < ::String
|
1366
|
+
Daily = NonHourlyReportAggregation.new("Daily")
|
1367
|
+
Monthly = NonHourlyReportAggregation.new("Monthly")
|
1368
|
+
Summary = NonHourlyReportAggregation.new("Summary")
|
1369
|
+
Weekly = NonHourlyReportAggregation.new("Weekly")
|
1370
|
+
Yearly = NonHourlyReportAggregation.new("Yearly")
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
# {https://adcenter.microsoft.com/v7}AdDynamicTextPerformanceReportColumn
|
1374
|
+
class AdDynamicTextPerformanceReportColumn < ::String
|
1375
|
+
AccountName = AdDynamicTextPerformanceReportColumn.new("AccountName")
|
1376
|
+
AccountNumber = AdDynamicTextPerformanceReportColumn.new("AccountNumber")
|
1377
|
+
AdDistribution = AdDynamicTextPerformanceReportColumn.new("AdDistribution")
|
1378
|
+
AdGroupId = AdDynamicTextPerformanceReportColumn.new("AdGroupId")
|
1379
|
+
AdGroupName = AdDynamicTextPerformanceReportColumn.new("AdGroupName")
|
1380
|
+
AdId = AdDynamicTextPerformanceReportColumn.new("AdId")
|
1381
|
+
AdTitle = AdDynamicTextPerformanceReportColumn.new("AdTitle")
|
1382
|
+
AdType = AdDynamicTextPerformanceReportColumn.new("AdType")
|
1383
|
+
AverageCpc = AdDynamicTextPerformanceReportColumn.new("AverageCpc")
|
1384
|
+
AverageCpm = AdDynamicTextPerformanceReportColumn.new("AverageCpm")
|
1385
|
+
AveragePosition = AdDynamicTextPerformanceReportColumn.new("AveragePosition")
|
1386
|
+
Clicks = AdDynamicTextPerformanceReportColumn.new("Clicks")
|
1387
|
+
ConversionRate = AdDynamicTextPerformanceReportColumn.new("ConversionRate")
|
1388
|
+
Conversions = AdDynamicTextPerformanceReportColumn.new("Conversions")
|
1389
|
+
CostPerConversion = AdDynamicTextPerformanceReportColumn.new("CostPerConversion")
|
1390
|
+
Ctr = AdDynamicTextPerformanceReportColumn.new("Ctr")
|
1391
|
+
CurrencyCode = AdDynamicTextPerformanceReportColumn.new("CurrencyCode")
|
1392
|
+
DestinationUrl = AdDynamicTextPerformanceReportColumn.new("DestinationUrl")
|
1393
|
+
Impressions = AdDynamicTextPerformanceReportColumn.new("Impressions")
|
1394
|
+
Keyword = AdDynamicTextPerformanceReportColumn.new("Keyword")
|
1395
|
+
LanguageAndRegion = AdDynamicTextPerformanceReportColumn.new("LanguageAndRegion")
|
1396
|
+
Param1 = AdDynamicTextPerformanceReportColumn.new("Param1")
|
1397
|
+
Param2 = AdDynamicTextPerformanceReportColumn.new("Param2")
|
1398
|
+
Param3 = AdDynamicTextPerformanceReportColumn.new("Param3")
|
1399
|
+
PricingModel = AdDynamicTextPerformanceReportColumn.new("PricingModel")
|
1400
|
+
Spend = AdDynamicTextPerformanceReportColumn.new("Spend")
|
1401
|
+
TimePeriod = AdDynamicTextPerformanceReportColumn.new("TimePeriod")
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
# {https://adcenter.microsoft.com/v7}AdDistributionReportFilter
|
1405
|
+
# contains list of AdDistributionReportFilter::*
|
1406
|
+
class AdDistributionReportFilter < ::Array
|
1407
|
+
Content = "Content"
|
1408
|
+
Search = "Search"
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
# {https://adcenter.microsoft.com/v7}AdTypeReportFilter
|
1412
|
+
# contains list of AdTypeReportFilter::*
|
1413
|
+
class AdTypeReportFilter < ::Array
|
1414
|
+
Image = "Image"
|
1415
|
+
Mobile = "Mobile"
|
1416
|
+
RichMedia = "RichMedia"
|
1417
|
+
Text = "Text"
|
1418
|
+
ThirdPartyCreative = "ThirdPartyCreative"
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
# {https://adcenter.microsoft.com/v7}LanguageAndRegionReportFilter
|
1422
|
+
# contains list of LanguageAndRegionReportFilter::*
|
1423
|
+
class LanguageAndRegionReportFilter < ::Array
|
1424
|
+
EnglishCanada = "EnglishCanada"
|
1425
|
+
France = "France"
|
1426
|
+
FrenchCanada = "FrenchCanada"
|
1427
|
+
Singapore = "Singapore"
|
1428
|
+
UnitedKingdom = "UnitedKingdom"
|
1429
|
+
UnitedStates = "UnitedStates"
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
# {https://adcenter.microsoft.com/v7}ReportTimePeriod
|
1433
|
+
class ReportTimePeriod < ::String
|
1434
|
+
LastFourWeeks = ReportTimePeriod.new("LastFourWeeks")
|
1435
|
+
LastMonth = ReportTimePeriod.new("LastMonth")
|
1436
|
+
LastSevenDays = ReportTimePeriod.new("LastSevenDays")
|
1437
|
+
LastSixMonths = ReportTimePeriod.new("LastSixMonths")
|
1438
|
+
LastThreeMonths = ReportTimePeriod.new("LastThreeMonths")
|
1439
|
+
LastWeek = ReportTimePeriod.new("LastWeek")
|
1440
|
+
LastYear = ReportTimePeriod.new("LastYear")
|
1441
|
+
ThisMonth = ReportTimePeriod.new("ThisMonth")
|
1442
|
+
ThisWeek = ReportTimePeriod.new("ThisWeek")
|
1443
|
+
ThisYear = ReportTimePeriod.new("ThisYear")
|
1444
|
+
Today = ReportTimePeriod.new("Today")
|
1445
|
+
Yesterday = ReportTimePeriod.new("Yesterday")
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
# {https://adcenter.microsoft.com/v7}ReportAggregation
|
1449
|
+
class ReportAggregation < ::String
|
1450
|
+
Daily = ReportAggregation.new("Daily")
|
1451
|
+
Hourly = ReportAggregation.new("Hourly")
|
1452
|
+
Monthly = ReportAggregation.new("Monthly")
|
1453
|
+
Summary = ReportAggregation.new("Summary")
|
1454
|
+
Weekly = ReportAggregation.new("Weekly")
|
1455
|
+
Yearly = ReportAggregation.new("Yearly")
|
1456
|
+
end
|
1457
|
+
|
1458
|
+
# {https://adcenter.microsoft.com/v7}KeywordPerformanceReportColumn
|
1459
|
+
class KeywordPerformanceReportColumn < ::String
|
1460
|
+
AccountId = KeywordPerformanceReportColumn.new("AccountId")
|
1461
|
+
AccountName = KeywordPerformanceReportColumn.new("AccountName")
|
1462
|
+
AccountNumber = KeywordPerformanceReportColumn.new("AccountNumber")
|
1463
|
+
AdDistribution = KeywordPerformanceReportColumn.new("AdDistribution")
|
1464
|
+
AdGroupId = KeywordPerformanceReportColumn.new("AdGroupId")
|
1465
|
+
AdGroupName = KeywordPerformanceReportColumn.new("AdGroupName")
|
1466
|
+
AdId = KeywordPerformanceReportColumn.new("AdId")
|
1467
|
+
AdType = KeywordPerformanceReportColumn.new("AdType")
|
1468
|
+
AverageCpc = KeywordPerformanceReportColumn.new("AverageCpc")
|
1469
|
+
AverageCpm = KeywordPerformanceReportColumn.new("AverageCpm")
|
1470
|
+
AveragePosition = KeywordPerformanceReportColumn.new("AveragePosition")
|
1471
|
+
BidMatchType = KeywordPerformanceReportColumn.new("BidMatchType")
|
1472
|
+
CampaignId = KeywordPerformanceReportColumn.new("CampaignId")
|
1473
|
+
CampaignName = KeywordPerformanceReportColumn.new("CampaignName")
|
1474
|
+
Cashback = KeywordPerformanceReportColumn.new("Cashback")
|
1475
|
+
Clicks = KeywordPerformanceReportColumn.new("Clicks")
|
1476
|
+
ConversionRate = KeywordPerformanceReportColumn.new("ConversionRate")
|
1477
|
+
Conversions = KeywordPerformanceReportColumn.new("Conversions")
|
1478
|
+
CostPerConversion = KeywordPerformanceReportColumn.new("CostPerConversion")
|
1479
|
+
Ctr = KeywordPerformanceReportColumn.new("Ctr")
|
1480
|
+
CurrencyCode = KeywordPerformanceReportColumn.new("CurrencyCode")
|
1481
|
+
CurrentMaxCpc = KeywordPerformanceReportColumn.new("CurrentMaxCpc")
|
1482
|
+
DestinationUrl = KeywordPerformanceReportColumn.new("DestinationUrl")
|
1483
|
+
Impressions = KeywordPerformanceReportColumn.new("Impressions")
|
1484
|
+
Keyword = KeywordPerformanceReportColumn.new("Keyword")
|
1485
|
+
KeywordId = KeywordPerformanceReportColumn.new("KeywordId")
|
1486
|
+
LanguageAndRegion = KeywordPerformanceReportColumn.new("LanguageAndRegion")
|
1487
|
+
MatchType = KeywordPerformanceReportColumn.new("MatchType")
|
1488
|
+
PricingModel = KeywordPerformanceReportColumn.new("PricingModel")
|
1489
|
+
Spend = KeywordPerformanceReportColumn.new("Spend")
|
1490
|
+
TimePeriod = KeywordPerformanceReportColumn.new("TimePeriod")
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
# {https://adcenter.microsoft.com/v7}BidMatchTypeReportFilter
|
1494
|
+
# contains list of BidMatchTypeReportFilter::*
|
1495
|
+
class BidMatchTypeReportFilter < ::Array
|
1496
|
+
Broad = "Broad"
|
1497
|
+
Content = "Content"
|
1498
|
+
Exact = "Exact"
|
1499
|
+
Phrase = "Phrase"
|
1500
|
+
end
|
1501
|
+
|
1502
|
+
# {https://adcenter.microsoft.com/v7}CashbackReportFilter
|
1503
|
+
# contains list of CashbackReportFilter::*
|
1504
|
+
class CashbackReportFilter < ::Array
|
1505
|
+
Enabled = "Enabled"
|
1506
|
+
NotEnabled = "NotEnabled"
|
1507
|
+
end
|
1508
|
+
|
1509
|
+
# {https://adcenter.microsoft.com/v7}DeliveredMatchTypeReportFilter
|
1510
|
+
# contains list of DeliveredMatchTypeReportFilter::*
|
1511
|
+
class DeliveredMatchTypeReportFilter < ::Array
|
1512
|
+
Broad = "Broad"
|
1513
|
+
Content = "Content"
|
1514
|
+
Exact = "Exact"
|
1515
|
+
Phrase = "Phrase"
|
1516
|
+
end
|
1517
|
+
|
1518
|
+
# {https://adcenter.microsoft.com/v7}DestinationUrlPerformanceReportColumn
|
1519
|
+
class DestinationUrlPerformanceReportColumn < ::String
|
1520
|
+
AccountName = DestinationUrlPerformanceReportColumn.new("AccountName")
|
1521
|
+
AccountNumber = DestinationUrlPerformanceReportColumn.new("AccountNumber")
|
1522
|
+
AdDistribution = DestinationUrlPerformanceReportColumn.new("AdDistribution")
|
1523
|
+
AdGroupId = DestinationUrlPerformanceReportColumn.new("AdGroupId")
|
1524
|
+
AdGroupName = DestinationUrlPerformanceReportColumn.new("AdGroupName")
|
1525
|
+
AdId = DestinationUrlPerformanceReportColumn.new("AdId")
|
1526
|
+
AverageCpc = DestinationUrlPerformanceReportColumn.new("AverageCpc")
|
1527
|
+
AverageCpm = DestinationUrlPerformanceReportColumn.new("AverageCpm")
|
1528
|
+
AveragePosition = DestinationUrlPerformanceReportColumn.new("AveragePosition")
|
1529
|
+
CampaignId = DestinationUrlPerformanceReportColumn.new("CampaignId")
|
1530
|
+
CampaignName = DestinationUrlPerformanceReportColumn.new("CampaignName")
|
1531
|
+
Clicks = DestinationUrlPerformanceReportColumn.new("Clicks")
|
1532
|
+
ConversionRate = DestinationUrlPerformanceReportColumn.new("ConversionRate")
|
1533
|
+
Conversions = DestinationUrlPerformanceReportColumn.new("Conversions")
|
1534
|
+
CostPerConversion = DestinationUrlPerformanceReportColumn.new("CostPerConversion")
|
1535
|
+
Ctr = DestinationUrlPerformanceReportColumn.new("Ctr")
|
1536
|
+
CurrencyCode = DestinationUrlPerformanceReportColumn.new("CurrencyCode")
|
1537
|
+
DestinationUrl = DestinationUrlPerformanceReportColumn.new("DestinationUrl")
|
1538
|
+
Impressions = DestinationUrlPerformanceReportColumn.new("Impressions")
|
1539
|
+
LanguageAndRegion = DestinationUrlPerformanceReportColumn.new("LanguageAndRegion")
|
1540
|
+
PricingModel = DestinationUrlPerformanceReportColumn.new("PricingModel")
|
1541
|
+
Spend = DestinationUrlPerformanceReportColumn.new("Spend")
|
1542
|
+
TimePeriod = DestinationUrlPerformanceReportColumn.new("TimePeriod")
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
# {https://adcenter.microsoft.com/v7}TacticChannelReportColumn
|
1546
|
+
class TacticChannelReportColumn < ::String
|
1547
|
+
AccountId = TacticChannelReportColumn.new("AccountId")
|
1548
|
+
AccountName = TacticChannelReportColumn.new("AccountName")
|
1549
|
+
AccountNumber = TacticChannelReportColumn.new("AccountNumber")
|
1550
|
+
AdGroupId = TacticChannelReportColumn.new("AdGroupId")
|
1551
|
+
AdGroupName = TacticChannelReportColumn.new("AdGroupName")
|
1552
|
+
Assists = TacticChannelReportColumn.new("Assists")
|
1553
|
+
CampaignId = TacticChannelReportColumn.new("CampaignId")
|
1554
|
+
CampaignName = TacticChannelReportColumn.new("CampaignName")
|
1555
|
+
Channel = TacticChannelReportColumn.new("Channel")
|
1556
|
+
Conversions = TacticChannelReportColumn.new("Conversions")
|
1557
|
+
FunnelConversionRate = TacticChannelReportColumn.new("FunnelConversionRate")
|
1558
|
+
Goal = TacticChannelReportColumn.new("Goal")
|
1559
|
+
Keyword = TacticChannelReportColumn.new("Keyword")
|
1560
|
+
KeywordId = TacticChannelReportColumn.new("KeywordId")
|
1561
|
+
ReturnOnAdSpend = TacticChannelReportColumn.new("ReturnOnAdSpend")
|
1562
|
+
Revenue = TacticChannelReportColumn.new("Revenue")
|
1563
|
+
Spend = TacticChannelReportColumn.new("Spend")
|
1564
|
+
Step1Count = TacticChannelReportColumn.new("Step1Count")
|
1565
|
+
Step2Count = TacticChannelReportColumn.new("Step2Count")
|
1566
|
+
Step3Count = TacticChannelReportColumn.new("Step3Count")
|
1567
|
+
Step4Count = TacticChannelReportColumn.new("Step4Count")
|
1568
|
+
Step5Count = TacticChannelReportColumn.new("Step5Count")
|
1569
|
+
Tactic = TacticChannelReportColumn.new("Tactic")
|
1570
|
+
ThirdPartyAdGroup = TacticChannelReportColumn.new("ThirdPartyAdGroup")
|
1571
|
+
ThirdPartyCampaign = TacticChannelReportColumn.new("ThirdPartyCampaign")
|
1572
|
+
ThirdPartyTerm = TacticChannelReportColumn.new("ThirdPartyTerm")
|
1573
|
+
TimePeriod = TacticChannelReportColumn.new("TimePeriod")
|
1574
|
+
end
|
1575
|
+
|
1576
|
+
# {https://adcenter.microsoft.com/v7}AccountPerformanceReportColumn
|
1577
|
+
class AccountPerformanceReportColumn < ::String
|
1578
|
+
AccountName = AccountPerformanceReportColumn.new("AccountName")
|
1579
|
+
AccountNumber = AccountPerformanceReportColumn.new("AccountNumber")
|
1580
|
+
AdDistribution = AccountPerformanceReportColumn.new("AdDistribution")
|
1581
|
+
AverageCpc = AccountPerformanceReportColumn.new("AverageCpc")
|
1582
|
+
AverageCpm = AccountPerformanceReportColumn.new("AverageCpm")
|
1583
|
+
AveragePosition = AccountPerformanceReportColumn.new("AveragePosition")
|
1584
|
+
Clicks = AccountPerformanceReportColumn.new("Clicks")
|
1585
|
+
ConversionRate = AccountPerformanceReportColumn.new("ConversionRate")
|
1586
|
+
Conversions = AccountPerformanceReportColumn.new("Conversions")
|
1587
|
+
CostPerConversion = AccountPerformanceReportColumn.new("CostPerConversion")
|
1588
|
+
Ctr = AccountPerformanceReportColumn.new("Ctr")
|
1589
|
+
CurrencyCode = AccountPerformanceReportColumn.new("CurrencyCode")
|
1590
|
+
DeviceType = AccountPerformanceReportColumn.new("DeviceType")
|
1591
|
+
Impressions = AccountPerformanceReportColumn.new("Impressions")
|
1592
|
+
LowQualityClicks = AccountPerformanceReportColumn.new("LowQualityClicks")
|
1593
|
+
LowQualityClicksPercent = AccountPerformanceReportColumn.new("LowQualityClicksPercent")
|
1594
|
+
LowQualityConversionRate = AccountPerformanceReportColumn.new("LowQualityConversionRate")
|
1595
|
+
LowQualityConversions = AccountPerformanceReportColumn.new("LowQualityConversions")
|
1596
|
+
LowQualityImpressions = AccountPerformanceReportColumn.new("LowQualityImpressions")
|
1597
|
+
LowQualityImpressionsPercent = AccountPerformanceReportColumn.new("LowQualityImpressionsPercent")
|
1598
|
+
Spend = AccountPerformanceReportColumn.new("Spend")
|
1599
|
+
TimePeriod = AccountPerformanceReportColumn.new("TimePeriod")
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
# {https://adcenter.microsoft.com/v7}DeviceTypeReportFilter
|
1603
|
+
# contains list of DeviceTypeReportFilter::*
|
1604
|
+
class DeviceTypeReportFilter < ::Array
|
1605
|
+
Computer = "Computer"
|
1606
|
+
NonSmartPhone = "NonSmartPhone"
|
1607
|
+
SmartPhone = "SmartPhone"
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
# {https://adcenter.microsoft.com/v7}CampaignPerformanceReportColumn
|
1611
|
+
class CampaignPerformanceReportColumn < ::String
|
1612
|
+
AccountName = CampaignPerformanceReportColumn.new("AccountName")
|
1613
|
+
AccountNumber = CampaignPerformanceReportColumn.new("AccountNumber")
|
1614
|
+
AdDistribution = CampaignPerformanceReportColumn.new("AdDistribution")
|
1615
|
+
AverageCpc = CampaignPerformanceReportColumn.new("AverageCpc")
|
1616
|
+
AverageCpm = CampaignPerformanceReportColumn.new("AverageCpm")
|
1617
|
+
AveragePosition = CampaignPerformanceReportColumn.new("AveragePosition")
|
1618
|
+
CampaignId = CampaignPerformanceReportColumn.new("CampaignId")
|
1619
|
+
CampaignName = CampaignPerformanceReportColumn.new("CampaignName")
|
1620
|
+
Clicks = CampaignPerformanceReportColumn.new("Clicks")
|
1621
|
+
ConversionRate = CampaignPerformanceReportColumn.new("ConversionRate")
|
1622
|
+
Conversions = CampaignPerformanceReportColumn.new("Conversions")
|
1623
|
+
CostPerConversion = CampaignPerformanceReportColumn.new("CostPerConversion")
|
1624
|
+
Ctr = CampaignPerformanceReportColumn.new("Ctr")
|
1625
|
+
CurrencyCode = CampaignPerformanceReportColumn.new("CurrencyCode")
|
1626
|
+
DeviceType = CampaignPerformanceReportColumn.new("DeviceType")
|
1627
|
+
Impressions = CampaignPerformanceReportColumn.new("Impressions")
|
1628
|
+
LowQualityClicks = CampaignPerformanceReportColumn.new("LowQualityClicks")
|
1629
|
+
LowQualityClicksPercent = CampaignPerformanceReportColumn.new("LowQualityClicksPercent")
|
1630
|
+
LowQualityConversionRate = CampaignPerformanceReportColumn.new("LowQualityConversionRate")
|
1631
|
+
LowQualityConversions = CampaignPerformanceReportColumn.new("LowQualityConversions")
|
1632
|
+
LowQualityImpressions = CampaignPerformanceReportColumn.new("LowQualityImpressions")
|
1633
|
+
LowQualityImpressionsPercent = CampaignPerformanceReportColumn.new("LowQualityImpressionsPercent")
|
1634
|
+
Spend = CampaignPerformanceReportColumn.new("Spend")
|
1635
|
+
Status = CampaignPerformanceReportColumn.new("Status")
|
1636
|
+
TimePeriod = CampaignPerformanceReportColumn.new("TimePeriod")
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
# {https://adcenter.microsoft.com/v7}CampaignStatusReportFilter
|
1640
|
+
# contains list of CampaignStatusReportFilter::*
|
1641
|
+
class CampaignStatusReportFilter < ::Array
|
1642
|
+
Active = "Active"
|
1643
|
+
BudgetPaused = "BudgetPaused"
|
1644
|
+
Cancelled = "Cancelled"
|
1645
|
+
Deleted = "Deleted"
|
1646
|
+
Paused = "Paused"
|
1647
|
+
Submitted = "Submitted"
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
# {https://adcenter.microsoft.com/v7}AdGroupPerformanceReportColumn
|
1651
|
+
class AdGroupPerformanceReportColumn < ::String
|
1652
|
+
AccountName = AdGroupPerformanceReportColumn.new("AccountName")
|
1653
|
+
AccountNumber = AdGroupPerformanceReportColumn.new("AccountNumber")
|
1654
|
+
AdDistribution = AdGroupPerformanceReportColumn.new("AdDistribution")
|
1655
|
+
AdGroupId = AdGroupPerformanceReportColumn.new("AdGroupId")
|
1656
|
+
AdGroupName = AdGroupPerformanceReportColumn.new("AdGroupName")
|
1657
|
+
AverageCpc = AdGroupPerformanceReportColumn.new("AverageCpc")
|
1658
|
+
AverageCpm = AdGroupPerformanceReportColumn.new("AverageCpm")
|
1659
|
+
AveragePosition = AdGroupPerformanceReportColumn.new("AveragePosition")
|
1660
|
+
CampaignId = AdGroupPerformanceReportColumn.new("CampaignId")
|
1661
|
+
CampaignName = AdGroupPerformanceReportColumn.new("CampaignName")
|
1662
|
+
Clicks = AdGroupPerformanceReportColumn.new("Clicks")
|
1663
|
+
ConversionRate = AdGroupPerformanceReportColumn.new("ConversionRate")
|
1664
|
+
Conversions = AdGroupPerformanceReportColumn.new("Conversions")
|
1665
|
+
CostPerConversion = AdGroupPerformanceReportColumn.new("CostPerConversion")
|
1666
|
+
Ctr = AdGroupPerformanceReportColumn.new("Ctr")
|
1667
|
+
CurrencyCode = AdGroupPerformanceReportColumn.new("CurrencyCode")
|
1668
|
+
DeviceType = AdGroupPerformanceReportColumn.new("DeviceType")
|
1669
|
+
Impressions = AdGroupPerformanceReportColumn.new("Impressions")
|
1670
|
+
LanguageAndRegion = AdGroupPerformanceReportColumn.new("LanguageAndRegion")
|
1671
|
+
PricingModel = AdGroupPerformanceReportColumn.new("PricingModel")
|
1672
|
+
Spend = AdGroupPerformanceReportColumn.new("Spend")
|
1673
|
+
Status = AdGroupPerformanceReportColumn.new("Status")
|
1674
|
+
TimePeriod = AdGroupPerformanceReportColumn.new("TimePeriod")
|
1675
|
+
end
|
1676
|
+
|
1677
|
+
# {https://adcenter.microsoft.com/v7}AdGroupStatusReportFilter
|
1678
|
+
# contains list of AdGroupStatusReportFilter::*
|
1679
|
+
class AdGroupStatusReportFilter < ::Array
|
1680
|
+
Active = "Active"
|
1681
|
+
Deleted = "Deleted"
|
1682
|
+
Draft = "Draft"
|
1683
|
+
Expired = "Expired"
|
1684
|
+
Paused = "Paused"
|
1685
|
+
Submitted = "Submitted"
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
# {https://adcenter.microsoft.com/v7}AdPerformanceReportColumn
|
1689
|
+
class AdPerformanceReportColumn < ::String
|
1690
|
+
AccountName = AdPerformanceReportColumn.new("AccountName")
|
1691
|
+
AccountNumber = AdPerformanceReportColumn.new("AccountNumber")
|
1692
|
+
AdDescription = AdPerformanceReportColumn.new("AdDescription")
|
1693
|
+
AdDistribution = AdPerformanceReportColumn.new("AdDistribution")
|
1694
|
+
AdGroupId = AdPerformanceReportColumn.new("AdGroupId")
|
1695
|
+
AdGroupName = AdPerformanceReportColumn.new("AdGroupName")
|
1696
|
+
AdId = AdPerformanceReportColumn.new("AdId")
|
1697
|
+
AdTitle = AdPerformanceReportColumn.new("AdTitle")
|
1698
|
+
AdType = AdPerformanceReportColumn.new("AdType")
|
1699
|
+
AverageCpc = AdPerformanceReportColumn.new("AverageCpc")
|
1700
|
+
AverageCpm = AdPerformanceReportColumn.new("AverageCpm")
|
1701
|
+
AveragePosition = AdPerformanceReportColumn.new("AveragePosition")
|
1702
|
+
CampaignName = AdPerformanceReportColumn.new("CampaignName")
|
1703
|
+
Clicks = AdPerformanceReportColumn.new("Clicks")
|
1704
|
+
ConversionRate = AdPerformanceReportColumn.new("ConversionRate")
|
1705
|
+
Conversions = AdPerformanceReportColumn.new("Conversions")
|
1706
|
+
CostPerConversion = AdPerformanceReportColumn.new("CostPerConversion")
|
1707
|
+
Ctr = AdPerformanceReportColumn.new("Ctr")
|
1708
|
+
CurrencyCode = AdPerformanceReportColumn.new("CurrencyCode")
|
1709
|
+
DestinationUrl = AdPerformanceReportColumn.new("DestinationUrl")
|
1710
|
+
Impressions = AdPerformanceReportColumn.new("Impressions")
|
1711
|
+
LanguageAndRegion = AdPerformanceReportColumn.new("LanguageAndRegion")
|
1712
|
+
PricingModel = AdPerformanceReportColumn.new("PricingModel")
|
1713
|
+
Spend = AdPerformanceReportColumn.new("Spend")
|
1714
|
+
TimePeriod = AdPerformanceReportColumn.new("TimePeriod")
|
1715
|
+
end
|
1716
|
+
|
1717
|
+
# {https://adcenter.microsoft.com/v7}BudgetSummaryReportColumn
|
1718
|
+
class BudgetSummaryReportColumn < ::String
|
1719
|
+
AccountName = BudgetSummaryReportColumn.new("AccountName")
|
1720
|
+
AccountNumber = BudgetSummaryReportColumn.new("AccountNumber")
|
1721
|
+
CampaignName = BudgetSummaryReportColumn.new("CampaignName")
|
1722
|
+
CurrencyCode = BudgetSummaryReportColumn.new("CurrencyCode")
|
1723
|
+
DailySpend = BudgetSummaryReportColumn.new("DailySpend")
|
1724
|
+
Date = BudgetSummaryReportColumn.new("Date")
|
1725
|
+
MonthToDateSpend = BudgetSummaryReportColumn.new("MonthToDateSpend")
|
1726
|
+
MonthlyBudget = BudgetSummaryReportColumn.new("MonthlyBudget")
|
1727
|
+
ParticipationRate = BudgetSummaryReportColumn.new("ParticipationRate")
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
# {https://adcenter.microsoft.com/v7}BudgetSummaryReportTimePeriod
|
1731
|
+
class BudgetSummaryReportTimePeriod < ::String
|
1732
|
+
LastMonth = BudgetSummaryReportTimePeriod.new("LastMonth")
|
1733
|
+
LastSevenDays = BudgetSummaryReportTimePeriod.new("LastSevenDays")
|
1734
|
+
ThisMonth = BudgetSummaryReportTimePeriod.new("ThisMonth")
|
1735
|
+
Today = BudgetSummaryReportTimePeriod.new("Today")
|
1736
|
+
Yesterday = BudgetSummaryReportTimePeriod.new("Yesterday")
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
# {https://adcenter.microsoft.com/v7}AgeGenderDemographicReportColumn
|
1740
|
+
class AgeGenderDemographicReportColumn < ::String
|
1741
|
+
AccountName = AgeGenderDemographicReportColumn.new("AccountName")
|
1742
|
+
AccountNumber = AgeGenderDemographicReportColumn.new("AccountNumber")
|
1743
|
+
AdDistribution = AgeGenderDemographicReportColumn.new("AdDistribution")
|
1744
|
+
AdGroupName = AgeGenderDemographicReportColumn.new("AdGroupName")
|
1745
|
+
AgeGroup = AgeGenderDemographicReportColumn.new("AgeGroup")
|
1746
|
+
CampaignName = AgeGenderDemographicReportColumn.new("CampaignName")
|
1747
|
+
EstimatedClickPercent = AgeGenderDemographicReportColumn.new("EstimatedClickPercent")
|
1748
|
+
EstimatedCtr = AgeGenderDemographicReportColumn.new("EstimatedCtr")
|
1749
|
+
EstimatedImpressionPercent = AgeGenderDemographicReportColumn.new("EstimatedImpressionPercent")
|
1750
|
+
Gender = AgeGenderDemographicReportColumn.new("Gender")
|
1751
|
+
LanguageAndRegion = AgeGenderDemographicReportColumn.new("LanguageAndRegion")
|
1752
|
+
TimePeriod = AgeGenderDemographicReportColumn.new("TimePeriod")
|
1753
|
+
end
|
1754
|
+
|
1755
|
+
# {https://adcenter.microsoft.com/v7}MetroAreaDemographicReportColumn
|
1756
|
+
class MetroAreaDemographicReportColumn < ::String
|
1757
|
+
AccountName = MetroAreaDemographicReportColumn.new("AccountName")
|
1758
|
+
AccountNumber = MetroAreaDemographicReportColumn.new("AccountNumber")
|
1759
|
+
AdDistribution = MetroAreaDemographicReportColumn.new("AdDistribution")
|
1760
|
+
AdGroupName = MetroAreaDemographicReportColumn.new("AdGroupName")
|
1761
|
+
AverageCpc = MetroAreaDemographicReportColumn.new("AverageCpc")
|
1762
|
+
AverageCpm = MetroAreaDemographicReportColumn.new("AverageCpm")
|
1763
|
+
AveragePosition = MetroAreaDemographicReportColumn.new("AveragePosition")
|
1764
|
+
CampaignName = MetroAreaDemographicReportColumn.new("CampaignName")
|
1765
|
+
Clicks = MetroAreaDemographicReportColumn.new("Clicks")
|
1766
|
+
Country = MetroAreaDemographicReportColumn.new("Country")
|
1767
|
+
Ctr = MetroAreaDemographicReportColumn.new("Ctr")
|
1768
|
+
CurrencyCode = MetroAreaDemographicReportColumn.new("CurrencyCode")
|
1769
|
+
Impressions = MetroAreaDemographicReportColumn.new("Impressions")
|
1770
|
+
LanguageAndRegion = MetroAreaDemographicReportColumn.new("LanguageAndRegion")
|
1771
|
+
MetroArea = MetroAreaDemographicReportColumn.new("MetroArea")
|
1772
|
+
Spend = MetroAreaDemographicReportColumn.new("Spend")
|
1773
|
+
State = MetroAreaDemographicReportColumn.new("State")
|
1774
|
+
TimePeriod = MetroAreaDemographicReportColumn.new("TimePeriod")
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
# {https://adcenter.microsoft.com/v7}CountryReportFilter
|
1778
|
+
# contains list of CountryReportFilter::*
|
1779
|
+
class CountryReportFilter < ::Array
|
1780
|
+
Canada = "Canada"
|
1781
|
+
France = "France"
|
1782
|
+
Singapore = "Singapore"
|
1783
|
+
UnitedKingdom = "UnitedKingdom"
|
1784
|
+
UnitedStates = "UnitedStates"
|
1785
|
+
end
|
1786
|
+
|
1787
|
+
# {https://adcenter.microsoft.com/v7}PublisherUsagePerformanceReportColumn
|
1788
|
+
class PublisherUsagePerformanceReportColumn < ::String
|
1789
|
+
AccountId = PublisherUsagePerformanceReportColumn.new("AccountId")
|
1790
|
+
AccountName = PublisherUsagePerformanceReportColumn.new("AccountName")
|
1791
|
+
AccountNumber = PublisherUsagePerformanceReportColumn.new("AccountNumber")
|
1792
|
+
AdDistribution = PublisherUsagePerformanceReportColumn.new("AdDistribution")
|
1793
|
+
AdGroupId = PublisherUsagePerformanceReportColumn.new("AdGroupId")
|
1794
|
+
AdGroupName = PublisherUsagePerformanceReportColumn.new("AdGroupName")
|
1795
|
+
AverageCpc = PublisherUsagePerformanceReportColumn.new("AverageCpc")
|
1796
|
+
AverageCpm = PublisherUsagePerformanceReportColumn.new("AverageCpm")
|
1797
|
+
AveragePosition = PublisherUsagePerformanceReportColumn.new("AveragePosition")
|
1798
|
+
CampaignId = PublisherUsagePerformanceReportColumn.new("CampaignId")
|
1799
|
+
CampaignName = PublisherUsagePerformanceReportColumn.new("CampaignName")
|
1800
|
+
Clicks = PublisherUsagePerformanceReportColumn.new("Clicks")
|
1801
|
+
ConversionRate = PublisherUsagePerformanceReportColumn.new("ConversionRate")
|
1802
|
+
Conversions = PublisherUsagePerformanceReportColumn.new("Conversions")
|
1803
|
+
CostPerConversion = PublisherUsagePerformanceReportColumn.new("CostPerConversion")
|
1804
|
+
Ctr = PublisherUsagePerformanceReportColumn.new("Ctr")
|
1805
|
+
CurrencyCode = PublisherUsagePerformanceReportColumn.new("CurrencyCode")
|
1806
|
+
Impressions = PublisherUsagePerformanceReportColumn.new("Impressions")
|
1807
|
+
LanguageAndRegion = PublisherUsagePerformanceReportColumn.new("LanguageAndRegion")
|
1808
|
+
PricingModel = PublisherUsagePerformanceReportColumn.new("PricingModel")
|
1809
|
+
PublisherUrl = PublisherUsagePerformanceReportColumn.new("PublisherUrl")
|
1810
|
+
Spend = PublisherUsagePerformanceReportColumn.new("Spend")
|
1811
|
+
TimePeriod = PublisherUsagePerformanceReportColumn.new("TimePeriod")
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
# {https://adcenter.microsoft.com/v7}SitePerformanceReportColumn
|
1815
|
+
class SitePerformanceReportColumn < ::String
|
1816
|
+
AccountId = SitePerformanceReportColumn.new("AccountId")
|
1817
|
+
AccountName = SitePerformanceReportColumn.new("AccountName")
|
1818
|
+
AccountNumber = SitePerformanceReportColumn.new("AccountNumber")
|
1819
|
+
AdDistribution = SitePerformanceReportColumn.new("AdDistribution")
|
1820
|
+
AdGroupId = SitePerformanceReportColumn.new("AdGroupId")
|
1821
|
+
AdGroupName = SitePerformanceReportColumn.new("AdGroupName")
|
1822
|
+
AdId = SitePerformanceReportColumn.new("AdId")
|
1823
|
+
AdType = SitePerformanceReportColumn.new("AdType")
|
1824
|
+
AverageCpc = SitePerformanceReportColumn.new("AverageCpc")
|
1825
|
+
AverageCpm = SitePerformanceReportColumn.new("AverageCpm")
|
1826
|
+
AveragePosition = SitePerformanceReportColumn.new("AveragePosition")
|
1827
|
+
CampaignId = SitePerformanceReportColumn.new("CampaignId")
|
1828
|
+
CampaignName = SitePerformanceReportColumn.new("CampaignName")
|
1829
|
+
Clicks = SitePerformanceReportColumn.new("Clicks")
|
1830
|
+
ConversionRate = SitePerformanceReportColumn.new("ConversionRate")
|
1831
|
+
Conversions = SitePerformanceReportColumn.new("Conversions")
|
1832
|
+
CostPerConversion = SitePerformanceReportColumn.new("CostPerConversion")
|
1833
|
+
Ctr = SitePerformanceReportColumn.new("Ctr")
|
1834
|
+
CurrencyCode = SitePerformanceReportColumn.new("CurrencyCode")
|
1835
|
+
CurrentMaxCpc = SitePerformanceReportColumn.new("CurrentMaxCpc")
|
1836
|
+
DestinationUrl = SitePerformanceReportColumn.new("DestinationUrl")
|
1837
|
+
Impressions = SitePerformanceReportColumn.new("Impressions")
|
1838
|
+
LanguageAndRegion = SitePerformanceReportColumn.new("LanguageAndRegion")
|
1839
|
+
MatchType = SitePerformanceReportColumn.new("MatchType")
|
1840
|
+
PricingModel = SitePerformanceReportColumn.new("PricingModel")
|
1841
|
+
Site = SitePerformanceReportColumn.new("Site")
|
1842
|
+
SiteId = SitePerformanceReportColumn.new("SiteId")
|
1843
|
+
Spend = SitePerformanceReportColumn.new("Spend")
|
1844
|
+
TimePeriod = SitePerformanceReportColumn.new("TimePeriod")
|
1845
|
+
end
|
1846
|
+
|
1847
|
+
# {https://adcenter.microsoft.com/v7}BehavioralTargetReportColumn
|
1848
|
+
class BehavioralTargetReportColumn < ::String
|
1849
|
+
AccountId = BehavioralTargetReportColumn.new("AccountId")
|
1850
|
+
AccountName = BehavioralTargetReportColumn.new("AccountName")
|
1851
|
+
AccountNumber = BehavioralTargetReportColumn.new("AccountNumber")
|
1852
|
+
AdDistribution = BehavioralTargetReportColumn.new("AdDistribution")
|
1853
|
+
AdGroupId = BehavioralTargetReportColumn.new("AdGroupId")
|
1854
|
+
AdGroupName = BehavioralTargetReportColumn.new("AdGroupName")
|
1855
|
+
AverageCpc = BehavioralTargetReportColumn.new("AverageCpc")
|
1856
|
+
AverageCpm = BehavioralTargetReportColumn.new("AverageCpm")
|
1857
|
+
AveragePosition = BehavioralTargetReportColumn.new("AveragePosition")
|
1858
|
+
BehavioralId = BehavioralTargetReportColumn.new("BehavioralId")
|
1859
|
+
CampaignId = BehavioralTargetReportColumn.new("CampaignId")
|
1860
|
+
CampaignName = BehavioralTargetReportColumn.new("CampaignName")
|
1861
|
+
Clicks = BehavioralTargetReportColumn.new("Clicks")
|
1862
|
+
Ctr = BehavioralTargetReportColumn.new("Ctr")
|
1863
|
+
CurrencyCode = BehavioralTargetReportColumn.new("CurrencyCode")
|
1864
|
+
Impressions = BehavioralTargetReportColumn.new("Impressions")
|
1865
|
+
LanguageAndRegion = BehavioralTargetReportColumn.new("LanguageAndRegion")
|
1866
|
+
PricingModel = BehavioralTargetReportColumn.new("PricingModel")
|
1867
|
+
Spend = BehavioralTargetReportColumn.new("Spend")
|
1868
|
+
TimePeriod = BehavioralTargetReportColumn.new("TimePeriod")
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# {https://adcenter.microsoft.com/v7}BehavioralPerformanceReportColumn
|
1872
|
+
class BehavioralPerformanceReportColumn < ::String
|
1873
|
+
AccountId = BehavioralPerformanceReportColumn.new("AccountId")
|
1874
|
+
AccountName = BehavioralPerformanceReportColumn.new("AccountName")
|
1875
|
+
AccountNumber = BehavioralPerformanceReportColumn.new("AccountNumber")
|
1876
|
+
AdDistribution = BehavioralPerformanceReportColumn.new("AdDistribution")
|
1877
|
+
AdGroupId = BehavioralPerformanceReportColumn.new("AdGroupId")
|
1878
|
+
AdGroupName = BehavioralPerformanceReportColumn.new("AdGroupName")
|
1879
|
+
AdId = BehavioralPerformanceReportColumn.new("AdId")
|
1880
|
+
AdType = BehavioralPerformanceReportColumn.new("AdType")
|
1881
|
+
AverageCpc = BehavioralPerformanceReportColumn.new("AverageCpc")
|
1882
|
+
AverageCpm = BehavioralPerformanceReportColumn.new("AverageCpm")
|
1883
|
+
AveragePosition = BehavioralPerformanceReportColumn.new("AveragePosition")
|
1884
|
+
BehavioralId = BehavioralPerformanceReportColumn.new("BehavioralId")
|
1885
|
+
BehavioralName = BehavioralPerformanceReportColumn.new("BehavioralName")
|
1886
|
+
CampaignId = BehavioralPerformanceReportColumn.new("CampaignId")
|
1887
|
+
CampaignName = BehavioralPerformanceReportColumn.new("CampaignName")
|
1888
|
+
Clicks = BehavioralPerformanceReportColumn.new("Clicks")
|
1889
|
+
ConversionRate = BehavioralPerformanceReportColumn.new("ConversionRate")
|
1890
|
+
Conversions = BehavioralPerformanceReportColumn.new("Conversions")
|
1891
|
+
CostPerConversion = BehavioralPerformanceReportColumn.new("CostPerConversion")
|
1892
|
+
Ctr = BehavioralPerformanceReportColumn.new("Ctr")
|
1893
|
+
CurrencyCode = BehavioralPerformanceReportColumn.new("CurrencyCode")
|
1894
|
+
CurrentMaxCpc = BehavioralPerformanceReportColumn.new("CurrentMaxCpc")
|
1895
|
+
DestinationUrl = BehavioralPerformanceReportColumn.new("DestinationUrl")
|
1896
|
+
Impressions = BehavioralPerformanceReportColumn.new("Impressions")
|
1897
|
+
LanguageAndRegion = BehavioralPerformanceReportColumn.new("LanguageAndRegion")
|
1898
|
+
MatchType = BehavioralPerformanceReportColumn.new("MatchType")
|
1899
|
+
PricingModel = BehavioralPerformanceReportColumn.new("PricingModel")
|
1900
|
+
Spend = BehavioralPerformanceReportColumn.new("Spend")
|
1901
|
+
TimePeriod = BehavioralPerformanceReportColumn.new("TimePeriod")
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
# {https://adcenter.microsoft.com/v7}SearchQueryReportAggregation
|
1905
|
+
class SearchQueryReportAggregation < ::String
|
1906
|
+
Daily = SearchQueryReportAggregation.new("Daily")
|
1907
|
+
Hourly = SearchQueryReportAggregation.new("Hourly")
|
1908
|
+
Monthly = SearchQueryReportAggregation.new("Monthly")
|
1909
|
+
Summary = SearchQueryReportAggregation.new("Summary")
|
1910
|
+
Weekly = SearchQueryReportAggregation.new("Weekly")
|
1911
|
+
end
|
1912
|
+
|
1913
|
+
# {https://adcenter.microsoft.com/v7}SearchQueryPerformanceReportColumn
|
1914
|
+
class SearchQueryPerformanceReportColumn < ::String
|
1915
|
+
AccountId = SearchQueryPerformanceReportColumn.new("AccountId")
|
1916
|
+
AccountName = SearchQueryPerformanceReportColumn.new("AccountName")
|
1917
|
+
AccountNumber = SearchQueryPerformanceReportColumn.new("AccountNumber")
|
1918
|
+
AdGroupId = SearchQueryPerformanceReportColumn.new("AdGroupId")
|
1919
|
+
AdGroupName = SearchQueryPerformanceReportColumn.new("AdGroupName")
|
1920
|
+
AdId = SearchQueryPerformanceReportColumn.new("AdId")
|
1921
|
+
AdStatus = SearchQueryPerformanceReportColumn.new("AdStatus")
|
1922
|
+
AdType = SearchQueryPerformanceReportColumn.new("AdType")
|
1923
|
+
AverageCpc = SearchQueryPerformanceReportColumn.new("AverageCpc")
|
1924
|
+
AveragePosition = SearchQueryPerformanceReportColumn.new("AveragePosition")
|
1925
|
+
CampaignId = SearchQueryPerformanceReportColumn.new("CampaignId")
|
1926
|
+
CampaignName = SearchQueryPerformanceReportColumn.new("CampaignName")
|
1927
|
+
CampaignStatus = SearchQueryPerformanceReportColumn.new("CampaignStatus")
|
1928
|
+
Clicks = SearchQueryPerformanceReportColumn.new("Clicks")
|
1929
|
+
Ctr = SearchQueryPerformanceReportColumn.new("Ctr")
|
1930
|
+
DestinationUrl = SearchQueryPerformanceReportColumn.new("DestinationUrl")
|
1931
|
+
Impressions = SearchQueryPerformanceReportColumn.new("Impressions")
|
1932
|
+
LanguageAndRegion = SearchQueryPerformanceReportColumn.new("LanguageAndRegion")
|
1933
|
+
MatchType = SearchQueryPerformanceReportColumn.new("MatchType")
|
1934
|
+
SearchQuery = SearchQueryPerformanceReportColumn.new("SearchQuery")
|
1935
|
+
Spend = SearchQueryPerformanceReportColumn.new("Spend")
|
1936
|
+
TimePeriod = SearchQueryPerformanceReportColumn.new("TimePeriod")
|
1937
|
+
end
|
1938
|
+
|
1939
|
+
# {https://adcenter.microsoft.com/v7}AdStatusReportFilter
|
1940
|
+
# contains list of AdStatusReportFilter::*
|
1941
|
+
class AdStatusReportFilter < ::Array
|
1942
|
+
Active = "Active"
|
1943
|
+
Deleted = "Deleted"
|
1944
|
+
Pending = "Pending"
|
1945
|
+
Rejected = "Rejected"
|
1946
|
+
Submitted = "Submitted"
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
# {https://adcenter.microsoft.com/v7}ConversionPerformanceReportColumn
|
1950
|
+
class ConversionPerformanceReportColumn < ::String
|
1951
|
+
AccountId = ConversionPerformanceReportColumn.new("AccountId")
|
1952
|
+
AccountName = ConversionPerformanceReportColumn.new("AccountName")
|
1953
|
+
AccountNumber = ConversionPerformanceReportColumn.new("AccountNumber")
|
1954
|
+
AdGroupId = ConversionPerformanceReportColumn.new("AdGroupId")
|
1955
|
+
AdGroupName = ConversionPerformanceReportColumn.new("AdGroupName")
|
1956
|
+
Assists = ConversionPerformanceReportColumn.new("Assists")
|
1957
|
+
CampaignId = ConversionPerformanceReportColumn.new("CampaignId")
|
1958
|
+
CampaignName = ConversionPerformanceReportColumn.new("CampaignName")
|
1959
|
+
Clicks = ConversionPerformanceReportColumn.new("Clicks")
|
1960
|
+
ConversionRate = ConversionPerformanceReportColumn.new("ConversionRate")
|
1961
|
+
Conversions = ConversionPerformanceReportColumn.new("Conversions")
|
1962
|
+
CostPerAssist = ConversionPerformanceReportColumn.new("CostPerAssist")
|
1963
|
+
CostPerConversion = ConversionPerformanceReportColumn.new("CostPerConversion")
|
1964
|
+
Ctr = ConversionPerformanceReportColumn.new("Ctr")
|
1965
|
+
ExtendedCost = ConversionPerformanceReportColumn.new("ExtendedCost")
|
1966
|
+
Impressions = ConversionPerformanceReportColumn.new("Impressions")
|
1967
|
+
Keyword = ConversionPerformanceReportColumn.new("Keyword")
|
1968
|
+
KeywordId = ConversionPerformanceReportColumn.new("KeywordId")
|
1969
|
+
ReturnOnAdSpend = ConversionPerformanceReportColumn.new("ReturnOnAdSpend")
|
1970
|
+
Revenue = ConversionPerformanceReportColumn.new("Revenue")
|
1971
|
+
RevenuePerAssist = ConversionPerformanceReportColumn.new("RevenuePerAssist")
|
1972
|
+
RevenuePerConversion = ConversionPerformanceReportColumn.new("RevenuePerConversion")
|
1973
|
+
Spend = ConversionPerformanceReportColumn.new("Spend")
|
1974
|
+
TimePeriod = ConversionPerformanceReportColumn.new("TimePeriod")
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
# {https://adcenter.microsoft.com/v7}GoalsAndFunnelsReportColumn
|
1978
|
+
class GoalsAndFunnelsReportColumn < ::String
|
1979
|
+
AccountId = GoalsAndFunnelsReportColumn.new("AccountId")
|
1980
|
+
AccountName = GoalsAndFunnelsReportColumn.new("AccountName")
|
1981
|
+
AccountNumber = GoalsAndFunnelsReportColumn.new("AccountNumber")
|
1982
|
+
AdGroupId = GoalsAndFunnelsReportColumn.new("AdGroupId")
|
1983
|
+
AdGroupName = GoalsAndFunnelsReportColumn.new("AdGroupName")
|
1984
|
+
Assists = GoalsAndFunnelsReportColumn.new("Assists")
|
1985
|
+
CampaignId = GoalsAndFunnelsReportColumn.new("CampaignId")
|
1986
|
+
CampaignName = GoalsAndFunnelsReportColumn.new("CampaignName")
|
1987
|
+
Conversions = GoalsAndFunnelsReportColumn.new("Conversions")
|
1988
|
+
ExtendedCost = GoalsAndFunnelsReportColumn.new("ExtendedCost")
|
1989
|
+
FunnelConversionRate = GoalsAndFunnelsReportColumn.new("FunnelConversionRate")
|
1990
|
+
Goal = GoalsAndFunnelsReportColumn.new("Goal")
|
1991
|
+
Keyword = GoalsAndFunnelsReportColumn.new("Keyword")
|
1992
|
+
KeywordId = GoalsAndFunnelsReportColumn.new("KeywordId")
|
1993
|
+
ReturnOnAdSpend = GoalsAndFunnelsReportColumn.new("ReturnOnAdSpend")
|
1994
|
+
Revenue = GoalsAndFunnelsReportColumn.new("Revenue")
|
1995
|
+
Spend = GoalsAndFunnelsReportColumn.new("Spend")
|
1996
|
+
Step1Count = GoalsAndFunnelsReportColumn.new("Step1Count")
|
1997
|
+
Step2Count = GoalsAndFunnelsReportColumn.new("Step2Count")
|
1998
|
+
Step3Count = GoalsAndFunnelsReportColumn.new("Step3Count")
|
1999
|
+
Step4Count = GoalsAndFunnelsReportColumn.new("Step4Count")
|
2000
|
+
Step5Count = GoalsAndFunnelsReportColumn.new("Step5Count")
|
2001
|
+
TimePeriod = GoalsAndFunnelsReportColumn.new("TimePeriod")
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
# {https://adcenter.microsoft.com/v7}TrafficSourcesReportColumn
|
2005
|
+
class TrafficSourcesReportColumn < ::String
|
2006
|
+
AccountId = TrafficSourcesReportColumn.new("AccountId")
|
2007
|
+
AccountName = TrafficSourcesReportColumn.new("AccountName")
|
2008
|
+
AccountNumber = TrafficSourcesReportColumn.new("AccountNumber")
|
2009
|
+
Assists = TrafficSourcesReportColumn.new("Assists")
|
2010
|
+
Conversions = TrafficSourcesReportColumn.new("Conversions")
|
2011
|
+
FunnelConversionRate = TrafficSourcesReportColumn.new("FunnelConversionRate")
|
2012
|
+
Goal = TrafficSourcesReportColumn.new("Goal")
|
2013
|
+
Revenue = TrafficSourcesReportColumn.new("Revenue")
|
2014
|
+
RevenuePerConversion = TrafficSourcesReportColumn.new("RevenuePerConversion")
|
2015
|
+
Source = TrafficSourcesReportColumn.new("Source")
|
2016
|
+
Step1Count = TrafficSourcesReportColumn.new("Step1Count")
|
2017
|
+
Step2Count = TrafficSourcesReportColumn.new("Step2Count")
|
2018
|
+
Step3Count = TrafficSourcesReportColumn.new("Step3Count")
|
2019
|
+
Step4Count = TrafficSourcesReportColumn.new("Step4Count")
|
2020
|
+
Step5Count = TrafficSourcesReportColumn.new("Step5Count")
|
2021
|
+
TimePeriod = TrafficSourcesReportColumn.new("TimePeriod")
|
2022
|
+
end
|
2023
|
+
|
2024
|
+
# {https://adcenter.microsoft.com/v7}SegmentationReportColumn
|
2025
|
+
class SegmentationReportColumn < ::String
|
2026
|
+
AccountId = SegmentationReportColumn.new("AccountId")
|
2027
|
+
AccountName = SegmentationReportColumn.new("AccountName")
|
2028
|
+
AccountNumber = SegmentationReportColumn.new("AccountNumber")
|
2029
|
+
AdGroupId = SegmentationReportColumn.new("AdGroupId")
|
2030
|
+
AdGroupName = SegmentationReportColumn.new("AdGroupName")
|
2031
|
+
AgeGroup = SegmentationReportColumn.new("AgeGroup")
|
2032
|
+
Assists = SegmentationReportColumn.new("Assists")
|
2033
|
+
CampaignId = SegmentationReportColumn.new("CampaignId")
|
2034
|
+
CampaignName = SegmentationReportColumn.new("CampaignName")
|
2035
|
+
Conversions = SegmentationReportColumn.new("Conversions")
|
2036
|
+
Country = SegmentationReportColumn.new("Country")
|
2037
|
+
FunnelConversionRate = SegmentationReportColumn.new("FunnelConversionRate")
|
2038
|
+
Gender = SegmentationReportColumn.new("Gender")
|
2039
|
+
Goal = SegmentationReportColumn.new("Goal")
|
2040
|
+
Keyword = SegmentationReportColumn.new("Keyword")
|
2041
|
+
KeywordId = SegmentationReportColumn.new("KeywordId")
|
2042
|
+
MetroArea = SegmentationReportColumn.new("MetroArea")
|
2043
|
+
ReturnOnAdSpend = SegmentationReportColumn.new("ReturnOnAdSpend")
|
2044
|
+
Revenue = SegmentationReportColumn.new("Revenue")
|
2045
|
+
Spend = SegmentationReportColumn.new("Spend")
|
2046
|
+
State = SegmentationReportColumn.new("State")
|
2047
|
+
Step1Count = SegmentationReportColumn.new("Step1Count")
|
2048
|
+
Step2Count = SegmentationReportColumn.new("Step2Count")
|
2049
|
+
Step3Count = SegmentationReportColumn.new("Step3Count")
|
2050
|
+
Step4Count = SegmentationReportColumn.new("Step4Count")
|
2051
|
+
Step5Count = SegmentationReportColumn.new("Step5Count")
|
2052
|
+
TimePeriod = SegmentationReportColumn.new("TimePeriod")
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
# {https://adcenter.microsoft.com/v7}AgeGroupReportFilter
|
2056
|
+
# contains list of AgeGroupReportFilter::*
|
2057
|
+
class AgeGroupReportFilter < ::Array
|
2058
|
+
Ages0to12 = "Ages0to12"
|
2059
|
+
Ages13to17 = "Ages13to17"
|
2060
|
+
Ages18to24 = "Ages18to24"
|
2061
|
+
Ages25to34 = "Ages25to34"
|
2062
|
+
Ages35to49 = "Ages35to49"
|
2063
|
+
Ages50to64 = "Ages50to64"
|
2064
|
+
Ages65plus = "Ages65plus"
|
2065
|
+
Unknown = "Unknown"
|
2066
|
+
end
|
2067
|
+
|
2068
|
+
# {https://adcenter.microsoft.com/v7}GenderReportFilter
|
2069
|
+
# contains list of GenderReportFilter::*
|
2070
|
+
class GenderReportFilter < ::Array
|
2071
|
+
Female = "Female"
|
2072
|
+
Male = "Male"
|
2073
|
+
Unknown = "Unknown"
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
# {https://adcenter.microsoft.com/v7}ReportRequestStatusType
|
2077
|
+
class ReportRequestStatusType < ::String
|
2078
|
+
Error = ReportRequestStatusType.new("Error")
|
2079
|
+
Pending = ReportRequestStatusType.new("Pending")
|
2080
|
+
Success = ReportRequestStatusType.new("Success")
|
2081
|
+
end
|
2082
|
+
|
2083
|
+
# {https://adcenter.microsoft.com/v7}SubmitGenerateReportRequest
|
2084
|
+
# reportRequest - ReportRequest
|
2085
|
+
class SubmitGenerateReportRequest
|
2086
|
+
attr_accessor :reportRequest
|
2087
|
+
|
2088
|
+
def initialize(reportRequest = nil)
|
2089
|
+
@reportRequest = reportRequest
|
2090
|
+
end
|
2091
|
+
end
|
2092
|
+
|
2093
|
+
# {https://adcenter.microsoft.com/v7}SubmitGenerateReportResponse
|
2094
|
+
# reportRequestId - SOAP::SOAPString
|
2095
|
+
class SubmitGenerateReportResponse
|
2096
|
+
attr_accessor :reportRequestId
|
2097
|
+
|
2098
|
+
def initialize(reportRequestId = nil)
|
2099
|
+
@reportRequestId = reportRequestId
|
2100
|
+
end
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
# {https://adcenter.microsoft.com/v7}PollGenerateReportRequest
|
2104
|
+
# reportRequestId - SOAP::SOAPString
|
2105
|
+
class PollGenerateReportRequest
|
2106
|
+
attr_accessor :reportRequestId
|
2107
|
+
|
2108
|
+
def initialize(reportRequestId = nil)
|
2109
|
+
@reportRequestId = reportRequestId
|
2110
|
+
end
|
2111
|
+
end
|
2112
|
+
|
2113
|
+
# {https://adcenter.microsoft.com/v7}PollGenerateReportResponse
|
2114
|
+
# reportRequestStatus - ReportRequestStatus
|
2115
|
+
class PollGenerateReportResponse
|
2116
|
+
attr_accessor :reportRequestStatus
|
2117
|
+
|
2118
|
+
def initialize(reportRequestStatus = nil)
|
2119
|
+
@reportRequestStatus = reportRequestStatus
|
2120
|
+
end
|
2121
|
+
end
|