adcenter-client 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. data/.autotest +23 -0
  2. data/History.txt +6 -0
  3. data/Manifest.txt +55 -0
  4. data/README.txt +78 -0
  5. data/Rakefile.rb +31 -0
  6. data/TODO +12 -0
  7. data/bin/gen_wsdl_drivers.rb +26 -0
  8. data/bin/wsdl.yml +16 -0
  9. data/lib/AdministrationService.rb +79 -0
  10. data/lib/AdministrationServiceClient.rb +40 -0
  11. data/lib/AdministrationServiceDriver.rb +55 -0
  12. data/lib/AdministrationServiceMappingRegistry.rb +148 -0
  13. data/lib/CampaignManagementService.rb +3458 -0
  14. data/lib/CampaignManagementServiceClient.rb +1370 -0
  15. data/lib/CampaignManagementServiceDriver.rb +719 -0
  16. data/lib/CampaignManagementServiceMappingRegistry.rb +5107 -0
  17. data/lib/CustomerBillingService.rb +390 -0
  18. data/lib/CustomerBillingServiceClient.rb +126 -0
  19. data/lib/CustomerBillingServiceDriver.rb +95 -0
  20. data/lib/CustomerBillingServiceMappingRegistry.rb +676 -0
  21. data/lib/CustomerManagementService.rb +1284 -0
  22. data/lib/CustomerManagementServiceClient.rb +282 -0
  23. data/lib/CustomerManagementServiceDriver.rb +175 -0
  24. data/lib/CustomerManagementServiceMappingRegistry.rb +1471 -0
  25. data/lib/NotificationManagementClient.rb +89 -0
  26. data/lib/ReportingService.rb +2121 -0
  27. data/lib/ReportingServiceClient.rb +42 -0
  28. data/lib/ReportingServiceDriver.rb +55 -0
  29. data/lib/ReportingServiceMappingRegistry.rb +3164 -0
  30. data/lib/SecureDataManagementService.rb +203 -0
  31. data/lib/SecureDataManagementServiceClient.rb +26 -0
  32. data/lib/SecureDataManagementServiceDriver.rb +47 -0
  33. data/lib/SecureDataManagementServiceMappingRegistry.rb +376 -0
  34. data/lib/adcenter_client.rb +103 -0
  35. data/lib/adcenter_service.rb +70 -0
  36. data/lib/administration_service.rb +7 -0
  37. data/lib/campaign_management_service.rb +7 -0
  38. data/lib/custom_assertions.rb +5 -0
  39. data/lib/custom_exceptions.rb +1 -0
  40. data/lib/customer_billing_service.rb +7 -0
  41. data/lib/customer_management_service.rb +9 -0
  42. data/lib/default.rb +636 -0
  43. data/lib/defaultDriver.rb +63 -0
  44. data/lib/defaultMappingRegistry.rb +525 -0
  45. data/lib/notification_management.rb +7 -0
  46. data/lib/reporting_service.rb +7 -0
  47. data/lib/secure_data_management_service.rb +7 -0
  48. data/tasks/doctask.rake +9 -0
  49. data/tasks/testtask.rake +13 -0
  50. data/test/adcenter_client_test.rb +13 -0
  51. data/test/administration_service_test.rb +19 -0
  52. data/test/customer_management_service_test.rb +20 -0
  53. data/test/report_service_test.rb +34 -0
  54. data/test/test_credentials.yml-sample +7 -0
  55. data/test/test_helper.rb +8 -0
  56. metadata +188 -0
@@ -0,0 +1,3458 @@
1
+ require 'xsd/qname'
2
+
3
+ # {https://adcenter.microsoft.com/v7}Ad
4
+ # editorialStatus - AdEditorialStatus
5
+ # id - SOAP::SOAPLong
6
+ # status - AdStatus
7
+ # type - AdType
8
+ class Ad
9
+ attr_accessor :editorialStatus
10
+ attr_accessor :id
11
+ attr_accessor :status
12
+ attr_accessor :type
13
+
14
+ def initialize(editorialStatus = nil, id = nil, status = nil, type = nil)
15
+ @editorialStatus = editorialStatus
16
+ @id = id
17
+ @status = status
18
+ @type = type
19
+ end
20
+ end
21
+
22
+ # {https://adcenter.microsoft.com/v7}MobileAd
23
+ # editorialStatus - AdEditorialStatus
24
+ # id - SOAP::SOAPLong
25
+ # status - AdStatus
26
+ # type - AdType
27
+ # businessName - SOAP::SOAPString
28
+ # destinationUrl - SOAP::SOAPString
29
+ # displayUrl - SOAP::SOAPString
30
+ # phoneNumber - SOAP::SOAPString
31
+ # text - SOAP::SOAPString
32
+ # title - SOAP::SOAPString
33
+ class MobileAd < Ad
34
+ attr_accessor :editorialStatus
35
+ attr_accessor :id
36
+ attr_accessor :status
37
+ attr_accessor :type
38
+ attr_accessor :businessName
39
+ attr_accessor :destinationUrl
40
+ attr_accessor :displayUrl
41
+ attr_accessor :phoneNumber
42
+ attr_accessor :text
43
+ attr_accessor :title
44
+
45
+ def initialize(editorialStatus = nil, id = nil, status = nil, type = nil, businessName = nil, destinationUrl = nil, displayUrl = nil, phoneNumber = nil, text = nil, title = nil)
46
+ @editorialStatus = editorialStatus
47
+ @id = id
48
+ @status = status
49
+ @type = type
50
+ @businessName = businessName
51
+ @destinationUrl = destinationUrl
52
+ @displayUrl = displayUrl
53
+ @phoneNumber = phoneNumber
54
+ @text = text
55
+ @title = title
56
+ end
57
+ end
58
+
59
+ # {https://adcenter.microsoft.com/v7}TextAd
60
+ # editorialStatus - AdEditorialStatus
61
+ # id - SOAP::SOAPLong
62
+ # status - AdStatus
63
+ # type - AdType
64
+ # destinationUrl - SOAP::SOAPString
65
+ # displayUrl - SOAP::SOAPString
66
+ # text - SOAP::SOAPString
67
+ # title - SOAP::SOAPString
68
+ class TextAd < Ad
69
+ attr_accessor :editorialStatus
70
+ attr_accessor :id
71
+ attr_accessor :status
72
+ attr_accessor :type
73
+ attr_accessor :destinationUrl
74
+ attr_accessor :displayUrl
75
+ attr_accessor :text
76
+ attr_accessor :title
77
+
78
+ def initialize(editorialStatus = nil, id = nil, status = nil, type = nil, destinationUrl = nil, displayUrl = nil, text = nil, title = nil)
79
+ @editorialStatus = editorialStatus
80
+ @id = id
81
+ @status = status
82
+ @type = type
83
+ @destinationUrl = destinationUrl
84
+ @displayUrl = displayUrl
85
+ @text = text
86
+ @title = title
87
+ end
88
+ end
89
+
90
+ # {https://adcenter.microsoft.com/v7}ArrayOfBehavioralBid
91
+ class ArrayOfBehavioralBid < ::Array
92
+ end
93
+
94
+ # {https://adcenter.microsoft.com/v7}BehavioralBid
95
+ # bid - Bid
96
+ # id - SOAP::SOAPLong
97
+ # name - SOAP::SOAPString
98
+ # segmentId - SOAP::SOAPLong
99
+ # status - BehavioralBidStatus
100
+ class BehavioralBid
101
+ attr_accessor :bid
102
+ attr_accessor :id
103
+ attr_accessor :name
104
+ attr_accessor :segmentId
105
+ attr_accessor :status
106
+
107
+ def initialize(bid = nil, id = nil, name = nil, segmentId = nil, status = nil)
108
+ @bid = bid
109
+ @id = id
110
+ @name = name
111
+ @segmentId = segmentId
112
+ @status = status
113
+ end
114
+ end
115
+
116
+ # {https://adcenter.microsoft.com/v7}Bid
117
+ # amount - SOAP::SOAPDouble
118
+ class Bid
119
+ attr_accessor :amount
120
+
121
+ def initialize(amount = nil)
122
+ @amount = amount
123
+ end
124
+ end
125
+
126
+ # {https://adcenter.microsoft.com/v7}ArrayOfBatchError
127
+ class ArrayOfBatchError < ::Array
128
+ end
129
+
130
+ # {https://adcenter.microsoft.com/v7}BatchError
131
+ # code - SOAP::SOAPInt
132
+ # details - SOAP::SOAPString
133
+ # errorCode - SOAP::SOAPString
134
+ # index - SOAP::SOAPInt
135
+ # message - SOAP::SOAPString
136
+ class BatchError
137
+ attr_accessor :code
138
+ attr_accessor :details
139
+ attr_accessor :errorCode
140
+ attr_accessor :index
141
+ attr_accessor :message
142
+
143
+ def initialize(code = nil, details = nil, errorCode = nil, index = nil, message = nil)
144
+ @code = code
145
+ @details = details
146
+ @errorCode = errorCode
147
+ @index = index
148
+ @message = message
149
+ end
150
+ end
151
+
152
+ # {https://adcenter.microsoft.com/v7}ArrayOfOperationError
153
+ class ArrayOfOperationError < ::Array
154
+ end
155
+
156
+ # {https://adcenter.microsoft.com/v7}OperationError
157
+ # code - SOAP::SOAPInt
158
+ # details - SOAP::SOAPString
159
+ # errorCode - SOAP::SOAPString
160
+ # message - SOAP::SOAPString
161
+ class OperationError
162
+ attr_accessor :code
163
+ attr_accessor :details
164
+ attr_accessor :errorCode
165
+ attr_accessor :message
166
+
167
+ def initialize(code = nil, details = nil, errorCode = nil, message = nil)
168
+ @code = code
169
+ @details = details
170
+ @errorCode = errorCode
171
+ @message = message
172
+ end
173
+ end
174
+
175
+ # {https://adcenter.microsoft.com/v7}ArrayOfSegment
176
+ class ArrayOfSegment < ::Array
177
+ end
178
+
179
+ # {https://adcenter.microsoft.com/v7}Segment
180
+ # id - SOAP::SOAPLong
181
+ # name - SOAP::SOAPString
182
+ class Segment
183
+ attr_accessor :id
184
+ attr_accessor :name
185
+
186
+ def initialize(id = nil, name = nil)
187
+ @id = id
188
+ @name = name
189
+ end
190
+ end
191
+
192
+ # {https://adcenter.microsoft.com/v7}ArrayOfEditorialReasonCollection
193
+ class ArrayOfEditorialReasonCollection < ::Array
194
+ end
195
+
196
+ # {https://adcenter.microsoft.com/v7}EditorialReasonCollection
197
+ # adOrKeywordId - SOAP::SOAPLong
198
+ # reasons - ArrayOfEditorialReason
199
+ class EditorialReasonCollection
200
+ attr_accessor :adOrKeywordId
201
+ attr_accessor :reasons
202
+
203
+ def initialize(adOrKeywordId = nil, reasons = nil)
204
+ @adOrKeywordId = adOrKeywordId
205
+ @reasons = reasons
206
+ end
207
+ end
208
+
209
+ # {https://adcenter.microsoft.com/v7}ArrayOfEditorialReason
210
+ class ArrayOfEditorialReason < ::Array
211
+ end
212
+
213
+ # {https://adcenter.microsoft.com/v7}EditorialReason
214
+ # location - AdComponent
215
+ # reasonCode - SOAP::SOAPInt
216
+ # term - SOAP::SOAPString
217
+ class EditorialReason
218
+ attr_accessor :location
219
+ attr_accessor :reasonCode
220
+ attr_accessor :term
221
+
222
+ def initialize(location = nil, reasonCode = nil, term = nil)
223
+ @location = location
224
+ @reasonCode = reasonCode
225
+ @term = term
226
+ end
227
+ end
228
+
229
+ # {https://adcenter.microsoft.com/v7}ArrayOfAd
230
+ class ArrayOfAd < ::Array
231
+ end
232
+
233
+ # {https://adcenter.microsoft.com/v7}ArrayOfEditorialError
234
+ class ArrayOfEditorialError < ::Array
235
+ end
236
+
237
+ # {https://adcenter.microsoft.com/v7}EditorialError
238
+ # appealable - SOAP::SOAPBoolean
239
+ # code - SOAP::SOAPInt
240
+ # disapprovedText - SOAP::SOAPString
241
+ # errorCode - SOAP::SOAPString
242
+ # index - SOAP::SOAPInt
243
+ # message - SOAP::SOAPString
244
+ class EditorialError
245
+ attr_accessor :appealable
246
+ attr_accessor :code
247
+ attr_accessor :disapprovedText
248
+ attr_accessor :errorCode
249
+ attr_accessor :index
250
+ attr_accessor :message
251
+
252
+ def initialize(appealable = nil, code = nil, disapprovedText = nil, errorCode = nil, index = nil, message = nil)
253
+ @appealable = appealable
254
+ @code = code
255
+ @disapprovedText = disapprovedText
256
+ @errorCode = errorCode
257
+ @index = index
258
+ @message = message
259
+ end
260
+ end
261
+
262
+ # {https://adcenter.microsoft.com/v7}ArrayOfKeyword
263
+ class ArrayOfKeyword < ::Array
264
+ end
265
+
266
+ # {https://adcenter.microsoft.com/v7}Keyword
267
+ # broadMatchBid - Bid
268
+ # cashBackInfo - CashBackInfo
269
+ # contentMatchBid - Bid
270
+ # editorialStatus - KeywordEditorialStatus
271
+ # exactMatchBid - Bid
272
+ # id - SOAP::SOAPLong
273
+ # negativeKeywords - ArrayOfstring
274
+ # overridePriority - OverridePriority
275
+ # param1 - SOAP::SOAPString
276
+ # param2 - SOAP::SOAPString
277
+ # param3 - SOAP::SOAPString
278
+ # phraseMatchBid - Bid
279
+ # status - KeywordStatus
280
+ # text - SOAP::SOAPString
281
+ class Keyword
282
+ attr_accessor :broadMatchBid
283
+ attr_accessor :cashBackInfo
284
+ attr_accessor :contentMatchBid
285
+ attr_accessor :editorialStatus
286
+ attr_accessor :exactMatchBid
287
+ attr_accessor :id
288
+ attr_accessor :negativeKeywords
289
+ attr_accessor :overridePriority
290
+ attr_accessor :param1
291
+ attr_accessor :param2
292
+ attr_accessor :param3
293
+ attr_accessor :phraseMatchBid
294
+ attr_accessor :status
295
+ attr_accessor :text
296
+
297
+ def initialize(broadMatchBid = nil, cashBackInfo = nil, contentMatchBid = nil, editorialStatus = nil, exactMatchBid = nil, id = nil, negativeKeywords = nil, overridePriority = nil, param1 = nil, param2 = nil, param3 = nil, phraseMatchBid = nil, status = nil, text = nil)
298
+ @broadMatchBid = broadMatchBid
299
+ @cashBackInfo = cashBackInfo
300
+ @contentMatchBid = contentMatchBid
301
+ @editorialStatus = editorialStatus
302
+ @exactMatchBid = exactMatchBid
303
+ @id = id
304
+ @negativeKeywords = negativeKeywords
305
+ @overridePriority = overridePriority
306
+ @param1 = param1
307
+ @param2 = param2
308
+ @param3 = param3
309
+ @phraseMatchBid = phraseMatchBid
310
+ @status = status
311
+ @text = text
312
+ end
313
+ end
314
+
315
+ # {https://adcenter.microsoft.com/v7}CashBackInfo
316
+ # cashBackAmount - SOAP::SOAPDouble
317
+ # cashBackStatus - CashBackStatus
318
+ # cashBackText - SOAP::SOAPString
319
+ class CashBackInfo
320
+ attr_accessor :cashBackAmount
321
+ attr_accessor :cashBackStatus
322
+ attr_accessor :cashBackText
323
+
324
+ def initialize(cashBackAmount = nil, cashBackStatus = nil, cashBackText = nil)
325
+ @cashBackAmount = cashBackAmount
326
+ @cashBackStatus = cashBackStatus
327
+ @cashBackText = cashBackText
328
+ end
329
+ end
330
+
331
+ # {https://adcenter.microsoft.com/v7}ArrayOfKeywordBid
332
+ class ArrayOfKeywordBid < ::Array
333
+ end
334
+
335
+ # {https://adcenter.microsoft.com/v7}KeywordBid
336
+ # broadMatchBid - SOAP::SOAPDouble
337
+ # exactMatchBid - SOAP::SOAPDouble
338
+ # keyword - SOAP::SOAPString
339
+ # phraseMatchBid - SOAP::SOAPDouble
340
+ class KeywordBid
341
+ attr_accessor :broadMatchBid
342
+ attr_accessor :exactMatchBid
343
+ attr_accessor :keyword
344
+ attr_accessor :phraseMatchBid
345
+
346
+ def initialize(broadMatchBid = nil, exactMatchBid = nil, keyword = nil, phraseMatchBid = nil)
347
+ @broadMatchBid = broadMatchBid
348
+ @exactMatchBid = exactMatchBid
349
+ @keyword = keyword
350
+ @phraseMatchBid = phraseMatchBid
351
+ end
352
+ end
353
+
354
+ # {https://adcenter.microsoft.com/v7}ArrayOfKeywordEstimate
355
+ class ArrayOfKeywordEstimate < ::Array
356
+ end
357
+
358
+ # {https://adcenter.microsoft.com/v7}KeywordEstimate
359
+ # averageMonthlyCost - SOAP::SOAPDouble
360
+ # averageMonthlyPosition - SOAP::SOAPInt
361
+ # broadKeywordEstimate - MatchTypeEstimate
362
+ # estimatedTotalMonthlyImpressions - SOAP::SOAPInt
363
+ # exactKeywordEstimate - MatchTypeEstimate
364
+ # phraseKeywordEstimate - MatchTypeEstimate
365
+ class KeywordEstimate
366
+ attr_accessor :averageMonthlyCost
367
+ attr_accessor :averageMonthlyPosition
368
+ attr_accessor :broadKeywordEstimate
369
+ attr_accessor :estimatedTotalMonthlyImpressions
370
+ attr_accessor :exactKeywordEstimate
371
+ attr_accessor :phraseKeywordEstimate
372
+
373
+ def initialize(averageMonthlyCost = nil, averageMonthlyPosition = nil, broadKeywordEstimate = nil, estimatedTotalMonthlyImpressions = nil, exactKeywordEstimate = nil, phraseKeywordEstimate = nil)
374
+ @averageMonthlyCost = averageMonthlyCost
375
+ @averageMonthlyPosition = averageMonthlyPosition
376
+ @broadKeywordEstimate = broadKeywordEstimate
377
+ @estimatedTotalMonthlyImpressions = estimatedTotalMonthlyImpressions
378
+ @exactKeywordEstimate = exactKeywordEstimate
379
+ @phraseKeywordEstimate = phraseKeywordEstimate
380
+ end
381
+ end
382
+
383
+ # {https://adcenter.microsoft.com/v7}MatchTypeEstimate
384
+ # monthlyCost - SOAP::SOAPDouble
385
+ # monthlyImpressions - SOAP::SOAPInt
386
+ # position - SOAP::SOAPInt
387
+ class MatchTypeEstimate
388
+ attr_accessor :monthlyCost
389
+ attr_accessor :monthlyImpressions
390
+ attr_accessor :position
391
+
392
+ def initialize(monthlyCost = nil, monthlyImpressions = nil, position = nil)
393
+ @monthlyCost = monthlyCost
394
+ @monthlyImpressions = monthlyImpressions
395
+ @position = position
396
+ end
397
+ end
398
+
399
+ # {https://adcenter.microsoft.com/v7}ArrayOfBusiness
400
+ class ArrayOfBusiness < ::Array
401
+ end
402
+
403
+ # {https://adcenter.microsoft.com/v7}Business
404
+ # addressLine1 - SOAP::SOAPString
405
+ # addressLine2 - SOAP::SOAPString
406
+ # businessImageIcon - BusinessImageIcon
407
+ # city - SOAP::SOAPString
408
+ # countryOrRegion - SOAP::SOAPString
409
+ # description - SOAP::SOAPString
410
+ # email - SOAP::SOAPString
411
+ # geoCodeStatus - BusinessGeoCodeStatus
412
+ # hrsOfOperation - ArrayOfHoursOfOperation
413
+ # id - SOAP::SOAPLong
414
+ # isOpen24Hours - SOAP::SOAPBoolean
415
+ # latitudeDegrees - SOAP::SOAPDouble
416
+ # longitudeDegrees - SOAP::SOAPDouble
417
+ # name - SOAP::SOAPString
418
+ # otherPaymentTypeDesc - SOAP::SOAPString
419
+ # payment - ArrayOfPaymentType
420
+ # phone - SOAP::SOAPString
421
+ # stateOrProvince - SOAP::SOAPString
422
+ # status - BusinessStatus
423
+ # uRL - SOAP::SOAPString
424
+ # zipOrPostalCode - SOAP::SOAPString
425
+ class Business
426
+ attr_accessor :addressLine1
427
+ attr_accessor :addressLine2
428
+ attr_accessor :businessImageIcon
429
+ attr_accessor :city
430
+ attr_accessor :countryOrRegion
431
+ attr_accessor :description
432
+ attr_accessor :email
433
+ attr_accessor :geoCodeStatus
434
+ attr_accessor :hrsOfOperation
435
+ attr_accessor :id
436
+ attr_accessor :isOpen24Hours
437
+ attr_accessor :latitudeDegrees
438
+ attr_accessor :longitudeDegrees
439
+ attr_accessor :name
440
+ attr_accessor :otherPaymentTypeDesc
441
+ attr_accessor :payment
442
+ attr_accessor :phone
443
+ attr_accessor :stateOrProvince
444
+ attr_accessor :status
445
+ attr_accessor :uRL
446
+ attr_accessor :zipOrPostalCode
447
+
448
+ def initialize(addressLine1 = nil, addressLine2 = nil, businessImageIcon = nil, city = nil, countryOrRegion = nil, description = nil, email = nil, geoCodeStatus = nil, hrsOfOperation = nil, id = nil, isOpen24Hours = nil, latitudeDegrees = nil, longitudeDegrees = nil, name = nil, otherPaymentTypeDesc = nil, payment = nil, phone = nil, stateOrProvince = nil, status = nil, uRL = nil, zipOrPostalCode = nil)
449
+ @addressLine1 = addressLine1
450
+ @addressLine2 = addressLine2
451
+ @businessImageIcon = businessImageIcon
452
+ @city = city
453
+ @countryOrRegion = countryOrRegion
454
+ @description = description
455
+ @email = email
456
+ @geoCodeStatus = geoCodeStatus
457
+ @hrsOfOperation = hrsOfOperation
458
+ @id = id
459
+ @isOpen24Hours = isOpen24Hours
460
+ @latitudeDegrees = latitudeDegrees
461
+ @longitudeDegrees = longitudeDegrees
462
+ @name = name
463
+ @otherPaymentTypeDesc = otherPaymentTypeDesc
464
+ @payment = payment
465
+ @phone = phone
466
+ @stateOrProvince = stateOrProvince
467
+ @status = status
468
+ @uRL = uRL
469
+ @zipOrPostalCode = zipOrPostalCode
470
+ end
471
+ end
472
+
473
+ # {https://adcenter.microsoft.com/v7}BusinessImageIcon
474
+ # customIconAssetId - SOAP::SOAPLong
475
+ # standardBusinessIcon - StandardBusinessIcon
476
+ class BusinessImageIcon
477
+ attr_accessor :customIconAssetId
478
+ attr_accessor :standardBusinessIcon
479
+
480
+ def initialize(customIconAssetId = nil, standardBusinessIcon = nil)
481
+ @customIconAssetId = customIconAssetId
482
+ @standardBusinessIcon = standardBusinessIcon
483
+ end
484
+ end
485
+
486
+ # {https://adcenter.microsoft.com/v7}ArrayOfHoursOfOperation
487
+ class ArrayOfHoursOfOperation < ::Array
488
+ end
489
+
490
+ # {https://adcenter.microsoft.com/v7}HoursOfOperation
491
+ # day - Day
492
+ # openTime1 - DayTimeInterval
493
+ # openTime2 - DayTimeInterval
494
+ class HoursOfOperation
495
+ attr_accessor :day
496
+ attr_accessor :openTime1
497
+ attr_accessor :openTime2
498
+
499
+ def initialize(day = nil, openTime1 = nil, openTime2 = nil)
500
+ @day = day
501
+ @openTime1 = openTime1
502
+ @openTime2 = openTime2
503
+ end
504
+ end
505
+
506
+ # {https://adcenter.microsoft.com/v7}DayTimeInterval
507
+ # m_begin - TimeOfTheDay
508
+ # m_end - TimeOfTheDay
509
+ class DayTimeInterval
510
+ def m_begin
511
+ @v_begin
512
+ end
513
+
514
+ def m_begin=(value)
515
+ @v_begin = value
516
+ end
517
+
518
+ def m_end
519
+ @v_end
520
+ end
521
+
522
+ def m_end=(value)
523
+ @v_end = value
524
+ end
525
+
526
+ def initialize(v_begin = nil, v_end = nil)
527
+ @v_begin = v_begin
528
+ @v_end = v_end
529
+ end
530
+ end
531
+
532
+ # {https://adcenter.microsoft.com/v7}TimeOfTheDay
533
+ # hour - SOAP::SOAPShort
534
+ # minute - SOAP::SOAPShort
535
+ class TimeOfTheDay
536
+ attr_accessor :hour
537
+ attr_accessor :minute
538
+
539
+ def initialize(hour = nil, minute = nil)
540
+ @hour = hour
541
+ @minute = minute
542
+ end
543
+ end
544
+
545
+ # {https://adcenter.microsoft.com/v7}ArrayOfPaymentType
546
+ class ArrayOfPaymentType < ::Array
547
+ end
548
+
549
+ # {https://adcenter.microsoft.com/v7}ArrayOfBusinessInfo
550
+ class ArrayOfBusinessInfo < ::Array
551
+ end
552
+
553
+ # {https://adcenter.microsoft.com/v7}BusinessInfo
554
+ # id - SOAP::SOAPLong
555
+ # name - SOAP::SOAPString
556
+ class BusinessInfo
557
+ attr_accessor :id
558
+ attr_accessor :name
559
+
560
+ def initialize(id = nil, name = nil)
561
+ @id = id
562
+ @name = name
563
+ end
564
+ end
565
+
566
+ # {https://adcenter.microsoft.com/v7}ArrayOfSitePlacement
567
+ class ArrayOfSitePlacement < ::Array
568
+ end
569
+
570
+ # {https://adcenter.microsoft.com/v7}SitePlacement
571
+ # bid - Bid
572
+ # id - SOAP::SOAPLong
573
+ # placementId - SOAP::SOAPLong
574
+ # status - SitePlacementStatus
575
+ # url - SOAP::SOAPString
576
+ class SitePlacement
577
+ attr_accessor :bid
578
+ attr_accessor :id
579
+ attr_accessor :placementId
580
+ attr_accessor :status
581
+ attr_accessor :url
582
+
583
+ def initialize(bid = nil, id = nil, placementId = nil, status = nil, url = nil)
584
+ @bid = bid
585
+ @id = id
586
+ @placementId = placementId
587
+ @status = status
588
+ @url = url
589
+ end
590
+ end
591
+
592
+ # {https://adcenter.microsoft.com/v7}ArrayOfArrayOfPlacementDetail
593
+ class ArrayOfArrayOfPlacementDetail < ::Array
594
+ end
595
+
596
+ # {https://adcenter.microsoft.com/v7}ArrayOfPlacementDetail
597
+ class ArrayOfPlacementDetail < ::Array
598
+ end
599
+
600
+ # {https://adcenter.microsoft.com/v7}PlacementDetail
601
+ # impressionsRangePerDay - ImpressionsPerDayRange
602
+ # pathName - SOAP::SOAPString
603
+ # placementId - SOAP::SOAPLong
604
+ # supportedMediaTypes - ArrayOfMediaType
605
+ class PlacementDetail
606
+ attr_accessor :impressionsRangePerDay
607
+ attr_accessor :pathName
608
+ attr_accessor :placementId
609
+ attr_accessor :supportedMediaTypes
610
+
611
+ def initialize(impressionsRangePerDay = nil, pathName = nil, placementId = nil, supportedMediaTypes = nil)
612
+ @impressionsRangePerDay = impressionsRangePerDay
613
+ @pathName = pathName
614
+ @placementId = placementId
615
+ @supportedMediaTypes = supportedMediaTypes
616
+ end
617
+ end
618
+
619
+ # {https://adcenter.microsoft.com/v7}ImpressionsPerDayRange
620
+ # maximum - SOAP::SOAPInt
621
+ # minimum - SOAP::SOAPInt
622
+ class ImpressionsPerDayRange
623
+ attr_accessor :maximum
624
+ attr_accessor :minimum
625
+
626
+ def initialize(maximum = nil, minimum = nil)
627
+ @maximum = maximum
628
+ @minimum = minimum
629
+ end
630
+ end
631
+
632
+ # {https://adcenter.microsoft.com/v7}ArrayOfMediaType
633
+ class ArrayOfMediaType < ::Array
634
+ end
635
+
636
+ # {https://adcenter.microsoft.com/v7}MediaType
637
+ # dimensions - ArrayOfDimension
638
+ # name - SOAP::SOAPString
639
+ class MediaType
640
+ attr_accessor :dimensions
641
+ attr_accessor :name
642
+
643
+ def initialize(dimensions = nil, name = nil)
644
+ @dimensions = dimensions
645
+ @name = name
646
+ end
647
+ end
648
+
649
+ # {https://adcenter.microsoft.com/v7}ArrayOfDimension
650
+ class ArrayOfDimension < ::Array
651
+ end
652
+
653
+ # {https://adcenter.microsoft.com/v7}Dimension
654
+ # height - SOAP::SOAPInt
655
+ # width - SOAP::SOAPInt
656
+ class Dimension
657
+ attr_accessor :height
658
+ attr_accessor :width
659
+
660
+ def initialize(height = nil, width = nil)
661
+ @height = height
662
+ @width = width
663
+ end
664
+ end
665
+
666
+ # {https://adcenter.microsoft.com/v7}ArrayOfCampaign
667
+ class ArrayOfCampaign < ::Array
668
+ end
669
+
670
+ # {https://adcenter.microsoft.com/v7}Campaign
671
+ # budgetType - BudgetLimitType
672
+ # cashBackInfo - CashBackInfo
673
+ # conversionTrackingEnabled - SOAP::SOAPBoolean
674
+ # conversionTrackingScript - SOAP::SOAPString
675
+ # dailyBudget - SOAP::SOAPDouble
676
+ # daylightSaving - SOAP::SOAPBoolean
677
+ # description - SOAP::SOAPString
678
+ # id - SOAP::SOAPLong
679
+ # monthlyBudget - SOAP::SOAPDouble
680
+ # name - SOAP::SOAPString
681
+ # negativeKeywords - ArrayOfstring
682
+ # negativeSiteUrls - ArrayOfstring
683
+ # status - CampaignStatus
684
+ # timeZone - SOAP::SOAPString
685
+ class Campaign
686
+ attr_accessor :budgetType
687
+ attr_accessor :cashBackInfo
688
+ attr_accessor :conversionTrackingEnabled
689
+ attr_accessor :conversionTrackingScript
690
+ attr_accessor :dailyBudget
691
+ attr_accessor :daylightSaving
692
+ attr_accessor :description
693
+ attr_accessor :id
694
+ attr_accessor :monthlyBudget
695
+ attr_accessor :name
696
+ attr_accessor :negativeKeywords
697
+ attr_accessor :negativeSiteUrls
698
+ attr_accessor :status
699
+ attr_accessor :timeZone
700
+
701
+ def initialize(budgetType = nil, cashBackInfo = nil, conversionTrackingEnabled = nil, conversionTrackingScript = nil, dailyBudget = nil, daylightSaving = nil, description = nil, id = nil, monthlyBudget = nil, name = nil, negativeKeywords = nil, negativeSiteUrls = nil, status = nil, timeZone = nil)
702
+ @budgetType = budgetType
703
+ @cashBackInfo = cashBackInfo
704
+ @conversionTrackingEnabled = conversionTrackingEnabled
705
+ @conversionTrackingScript = conversionTrackingScript
706
+ @dailyBudget = dailyBudget
707
+ @daylightSaving = daylightSaving
708
+ @description = description
709
+ @id = id
710
+ @monthlyBudget = monthlyBudget
711
+ @name = name
712
+ @negativeKeywords = negativeKeywords
713
+ @negativeSiteUrls = negativeSiteUrls
714
+ @status = status
715
+ @timeZone = timeZone
716
+ end
717
+ end
718
+
719
+ # {https://adcenter.microsoft.com/v7}ArrayOfCampaignInfo
720
+ class ArrayOfCampaignInfo < ::Array
721
+ end
722
+
723
+ # {https://adcenter.microsoft.com/v7}CampaignInfo
724
+ # budgetType - BudgetLimitType
725
+ # cashBackInfo - CashBackInfo
726
+ # conversionTrackingEnabled - SOAP::SOAPBoolean
727
+ # conversionTrackingScript - SOAP::SOAPString
728
+ # dailyBudget - SOAP::SOAPDouble
729
+ # daylightSaving - SOAP::SOAPBoolean
730
+ # description - SOAP::SOAPString
731
+ # id - SOAP::SOAPLong
732
+ # monthlyBudget - SOAP::SOAPDouble
733
+ # name - SOAP::SOAPString
734
+ # status - CampaignStatus
735
+ # timeZone - SOAP::SOAPString
736
+ class CampaignInfo
737
+ attr_accessor :budgetType
738
+ attr_accessor :cashBackInfo
739
+ attr_accessor :conversionTrackingEnabled
740
+ attr_accessor :conversionTrackingScript
741
+ attr_accessor :dailyBudget
742
+ attr_accessor :daylightSaving
743
+ attr_accessor :description
744
+ attr_accessor :id
745
+ attr_accessor :monthlyBudget
746
+ attr_accessor :name
747
+ attr_accessor :status
748
+ attr_accessor :timeZone
749
+
750
+ def initialize(budgetType = nil, cashBackInfo = nil, conversionTrackingEnabled = nil, conversionTrackingScript = nil, dailyBudget = nil, daylightSaving = nil, description = nil, id = nil, monthlyBudget = nil, name = nil, status = nil, timeZone = nil)
751
+ @budgetType = budgetType
752
+ @cashBackInfo = cashBackInfo
753
+ @conversionTrackingEnabled = conversionTrackingEnabled
754
+ @conversionTrackingScript = conversionTrackingScript
755
+ @dailyBudget = dailyBudget
756
+ @daylightSaving = daylightSaving
757
+ @description = description
758
+ @id = id
759
+ @monthlyBudget = monthlyBudget
760
+ @name = name
761
+ @status = status
762
+ @timeZone = timeZone
763
+ end
764
+ end
765
+
766
+ # {https://adcenter.microsoft.com/v7}ArrayOfCampaignNegativeKeywords
767
+ class ArrayOfCampaignNegativeKeywords < ::Array
768
+ end
769
+
770
+ # {https://adcenter.microsoft.com/v7}CampaignNegativeKeywords
771
+ # campaignId - SOAP::SOAPLong
772
+ # negativeKeywords - ArrayOfstring
773
+ class CampaignNegativeKeywords
774
+ attr_accessor :campaignId
775
+ attr_accessor :negativeKeywords
776
+
777
+ def initialize(campaignId = nil, negativeKeywords = nil)
778
+ @campaignId = campaignId
779
+ @negativeKeywords = negativeKeywords
780
+ end
781
+ end
782
+
783
+ # {https://adcenter.microsoft.com/v7}ArrayOfAdGroup
784
+ class ArrayOfAdGroup < ::Array
785
+ end
786
+
787
+ # {https://adcenter.microsoft.com/v7}AdGroup
788
+ # adDistribution - (any)
789
+ # biddingModel - BiddingModel
790
+ # broadMatchBid - Bid
791
+ # cashBackInfo - CashBackInfo
792
+ # contentMatchBid - Bid
793
+ # endDate - Date
794
+ # exactMatchBid - Bid
795
+ # id - SOAP::SOAPLong
796
+ # languageAndRegion - SOAP::SOAPString
797
+ # name - SOAP::SOAPString
798
+ # negativeKeywords - ArrayOfstring
799
+ # negativeSiteUrls - ArrayOfstring
800
+ # phraseMatchBid - Bid
801
+ # pricingModel - PricingModel
802
+ # startDate - Date
803
+ # status - AdGroupStatus
804
+ class AdGroup
805
+ attr_accessor :adDistribution
806
+ attr_accessor :biddingModel
807
+ attr_accessor :broadMatchBid
808
+ attr_accessor :cashBackInfo
809
+ attr_accessor :contentMatchBid
810
+ attr_accessor :endDate
811
+ attr_accessor :exactMatchBid
812
+ attr_accessor :id
813
+ attr_accessor :languageAndRegion
814
+ attr_accessor :name
815
+ attr_accessor :negativeKeywords
816
+ attr_accessor :negativeSiteUrls
817
+ attr_accessor :phraseMatchBid
818
+ attr_accessor :pricingModel
819
+ attr_accessor :startDate
820
+ attr_accessor :status
821
+
822
+ def initialize(adDistribution = nil, biddingModel = nil, broadMatchBid = nil, cashBackInfo = nil, contentMatchBid = nil, endDate = nil, exactMatchBid = nil, id = nil, languageAndRegion = nil, name = nil, negativeKeywords = nil, negativeSiteUrls = nil, phraseMatchBid = nil, pricingModel = nil, startDate = nil, status = nil)
823
+ @adDistribution = adDistribution
824
+ @biddingModel = biddingModel
825
+ @broadMatchBid = broadMatchBid
826
+ @cashBackInfo = cashBackInfo
827
+ @contentMatchBid = contentMatchBid
828
+ @endDate = endDate
829
+ @exactMatchBid = exactMatchBid
830
+ @id = id
831
+ @languageAndRegion = languageAndRegion
832
+ @name = name
833
+ @negativeKeywords = negativeKeywords
834
+ @negativeSiteUrls = negativeSiteUrls
835
+ @phraseMatchBid = phraseMatchBid
836
+ @pricingModel = pricingModel
837
+ @startDate = startDate
838
+ @status = status
839
+ end
840
+ end
841
+
842
+ # # {https://adcenter.microsoft.com/v7}Date
843
+ # # day - SOAP::SOAPInt
844
+ # # month - SOAP::SOAPInt
845
+ # # year - SOAP::SOAPInt
846
+ # class Date
847
+ # attr_accessor :day
848
+ # attr_accessor :month
849
+ # attr_accessor :year
850
+ #
851
+ # def initialize(day = nil, month = nil, year = nil)
852
+ # @day = day
853
+ # @month = month
854
+ # @year = year
855
+ # end
856
+ # end
857
+ #
858
+ # {https://adcenter.microsoft.com/v7}ArrayOfAdGroupInfo
859
+ class ArrayOfAdGroupInfo < ::Array
860
+ end
861
+
862
+ # {https://adcenter.microsoft.com/v7}AdGroupInfo
863
+ # adDistribution - (any)
864
+ # biddingModel - BiddingModel
865
+ # broadMatchBid - Bid
866
+ # cashBackInfo - CashBackInfo
867
+ # contentMatchBid - Bid
868
+ # endDate - Date
869
+ # exactMatchBid - Bid
870
+ # id - SOAP::SOAPLong
871
+ # languageAndRegion - SOAP::SOAPString
872
+ # name - SOAP::SOAPString
873
+ # phraseMatchBid - Bid
874
+ # pricingModel - PricingModel
875
+ # startDate - Date
876
+ # status - AdGroupStatus
877
+ class AdGroupInfo
878
+ attr_accessor :adDistribution
879
+ attr_accessor :biddingModel
880
+ attr_accessor :broadMatchBid
881
+ attr_accessor :cashBackInfo
882
+ attr_accessor :contentMatchBid
883
+ attr_accessor :endDate
884
+ attr_accessor :exactMatchBid
885
+ attr_accessor :id
886
+ attr_accessor :languageAndRegion
887
+ attr_accessor :name
888
+ attr_accessor :phraseMatchBid
889
+ attr_accessor :pricingModel
890
+ attr_accessor :startDate
891
+ attr_accessor :status
892
+
893
+ def initialize(adDistribution = nil, biddingModel = nil, broadMatchBid = nil, cashBackInfo = nil, contentMatchBid = nil, endDate = nil, exactMatchBid = nil, id = nil, languageAndRegion = nil, name = nil, phraseMatchBid = nil, pricingModel = nil, startDate = nil, status = nil)
894
+ @adDistribution = adDistribution
895
+ @biddingModel = biddingModel
896
+ @broadMatchBid = broadMatchBid
897
+ @cashBackInfo = cashBackInfo
898
+ @contentMatchBid = contentMatchBid
899
+ @endDate = endDate
900
+ @exactMatchBid = exactMatchBid
901
+ @id = id
902
+ @languageAndRegion = languageAndRegion
903
+ @name = name
904
+ @phraseMatchBid = phraseMatchBid
905
+ @pricingModel = pricingModel
906
+ @startDate = startDate
907
+ @status = status
908
+ end
909
+ end
910
+
911
+ # {https://adcenter.microsoft.com/v7}ArrayOfAdGroupNegativeKeywords
912
+ class ArrayOfAdGroupNegativeKeywords < ::Array
913
+ end
914
+
915
+ # {https://adcenter.microsoft.com/v7}AdGroupNegativeKeywords
916
+ # adGroupId - SOAP::SOAPLong
917
+ # negativeKeywords - ArrayOfstring
918
+ class AdGroupNegativeKeywords
919
+ attr_accessor :adGroupId
920
+ attr_accessor :negativeKeywords
921
+
922
+ def initialize(adGroupId = nil, negativeKeywords = nil)
923
+ @adGroupId = adGroupId
924
+ @negativeKeywords = negativeKeywords
925
+ end
926
+ end
927
+
928
+ # {https://adcenter.microsoft.com/v7}Target
929
+ # age - AgeTarget
930
+ # behavior - BehavioralTarget
931
+ # day - DayTarget
932
+ # device - DeviceTarget
933
+ # gender - GenderTarget
934
+ # hour - HourTarget
935
+ # id - SOAP::SOAPLong
936
+ # isLibraryTarget - SOAP::SOAPBoolean
937
+ # location - LocationTarget
938
+ # name - SOAP::SOAPString
939
+ # segment - SegmentTarget
940
+ class Target
941
+ attr_accessor :age
942
+ attr_accessor :behavior
943
+ attr_accessor :day
944
+ attr_accessor :device
945
+ attr_accessor :gender
946
+ attr_accessor :hour
947
+ attr_accessor :id
948
+ attr_accessor :isLibraryTarget
949
+ attr_accessor :location
950
+ attr_accessor :name
951
+ attr_accessor :segment
952
+
953
+ def initialize(age = nil, behavior = nil, day = nil, device = nil, gender = nil, hour = nil, id = nil, isLibraryTarget = nil, location = nil, name = nil, segment = nil)
954
+ @age = age
955
+ @behavior = behavior
956
+ @day = day
957
+ @device = device
958
+ @gender = gender
959
+ @hour = hour
960
+ @id = id
961
+ @isLibraryTarget = isLibraryTarget
962
+ @location = location
963
+ @name = name
964
+ @segment = segment
965
+ end
966
+ end
967
+
968
+ # {https://adcenter.microsoft.com/v7}AgeTarget
969
+ # bids - ArrayOfAgeTargetBid
970
+ class AgeTarget
971
+ attr_accessor :bids
972
+
973
+ def initialize(bids = nil)
974
+ @bids = bids
975
+ end
976
+ end
977
+
978
+ # {https://adcenter.microsoft.com/v7}ArrayOfAgeTargetBid
979
+ class ArrayOfAgeTargetBid < ::Array
980
+ end
981
+
982
+ # {https://adcenter.microsoft.com/v7}AgeTargetBid
983
+ # age - AgeRange
984
+ # incrementalBid - IncrementalBidPercentage
985
+ class AgeTargetBid
986
+ attr_accessor :age
987
+ attr_accessor :incrementalBid
988
+
989
+ def initialize(age = nil, incrementalBid = nil)
990
+ @age = age
991
+ @incrementalBid = incrementalBid
992
+ end
993
+ end
994
+
995
+ # {https://adcenter.microsoft.com/v7}BehavioralTarget
996
+ # bids - ArrayOfBehavioralTargetBid
997
+ class BehavioralTarget
998
+ attr_accessor :bids
999
+
1000
+ def initialize(bids = nil)
1001
+ @bids = bids
1002
+ end
1003
+ end
1004
+
1005
+ # {https://adcenter.microsoft.com/v7}ArrayOfBehavioralTargetBid
1006
+ class ArrayOfBehavioralTargetBid < ::Array
1007
+ end
1008
+
1009
+ # {https://adcenter.microsoft.com/v7}BehavioralTargetBid
1010
+ # behavioralName - SOAP::SOAPString
1011
+ # incrementalBid - IncrementalBidPercentage
1012
+ class BehavioralTargetBid
1013
+ attr_accessor :behavioralName
1014
+ attr_accessor :incrementalBid
1015
+
1016
+ def initialize(behavioralName = nil, incrementalBid = nil)
1017
+ @behavioralName = behavioralName
1018
+ @incrementalBid = incrementalBid
1019
+ end
1020
+ end
1021
+
1022
+ # {https://adcenter.microsoft.com/v7}DayTarget
1023
+ # bids - ArrayOfDayTargetBid
1024
+ # targetAllDays - SOAP::SOAPBoolean
1025
+ class DayTarget
1026
+ attr_accessor :bids
1027
+ attr_accessor :targetAllDays
1028
+
1029
+ def initialize(bids = nil, targetAllDays = nil)
1030
+ @bids = bids
1031
+ @targetAllDays = targetAllDays
1032
+ end
1033
+ end
1034
+
1035
+ # {https://adcenter.microsoft.com/v7}ArrayOfDayTargetBid
1036
+ class ArrayOfDayTargetBid < ::Array
1037
+ end
1038
+
1039
+ # {https://adcenter.microsoft.com/v7}DayTargetBid
1040
+ # day - Day
1041
+ # incrementalBid - IncrementalBidPercentage
1042
+ class DayTargetBid
1043
+ attr_accessor :day
1044
+ attr_accessor :incrementalBid
1045
+
1046
+ def initialize(day = nil, incrementalBid = nil)
1047
+ @day = day
1048
+ @incrementalBid = incrementalBid
1049
+ end
1050
+ end
1051
+
1052
+ # {https://adcenter.microsoft.com/v7}DeviceTarget
1053
+ # devices - ArrayOfDeviceType
1054
+ class DeviceTarget
1055
+ attr_accessor :devices
1056
+
1057
+ def initialize(devices = nil)
1058
+ @devices = devices
1059
+ end
1060
+ end
1061
+
1062
+ # {https://adcenter.microsoft.com/v7}ArrayOfDeviceType
1063
+ class ArrayOfDeviceType < ::Array
1064
+ end
1065
+
1066
+ # {https://adcenter.microsoft.com/v7}GenderTarget
1067
+ # bids - ArrayOfGenderTargetBid
1068
+ class GenderTarget
1069
+ attr_accessor :bids
1070
+
1071
+ def initialize(bids = nil)
1072
+ @bids = bids
1073
+ end
1074
+ end
1075
+
1076
+ # {https://adcenter.microsoft.com/v7}ArrayOfGenderTargetBid
1077
+ class ArrayOfGenderTargetBid < ::Array
1078
+ end
1079
+
1080
+ # {https://adcenter.microsoft.com/v7}GenderTargetBid
1081
+ # gender - GenderType
1082
+ # incrementalBid - IncrementalBidPercentage
1083
+ class GenderTargetBid
1084
+ attr_accessor :gender
1085
+ attr_accessor :incrementalBid
1086
+
1087
+ def initialize(gender = nil, incrementalBid = nil)
1088
+ @gender = gender
1089
+ @incrementalBid = incrementalBid
1090
+ end
1091
+ end
1092
+
1093
+ # {https://adcenter.microsoft.com/v7}HourTarget
1094
+ # bids - ArrayOfHourTargetBid
1095
+ # targetAllHours - SOAP::SOAPBoolean
1096
+ class HourTarget
1097
+ attr_accessor :bids
1098
+ attr_accessor :targetAllHours
1099
+
1100
+ def initialize(bids = nil, targetAllHours = nil)
1101
+ @bids = bids
1102
+ @targetAllHours = targetAllHours
1103
+ end
1104
+ end
1105
+
1106
+ # {https://adcenter.microsoft.com/v7}ArrayOfHourTargetBid
1107
+ class ArrayOfHourTargetBid < ::Array
1108
+ end
1109
+
1110
+ # {https://adcenter.microsoft.com/v7}HourTargetBid
1111
+ # hour - HourRange
1112
+ # incrementalBid - IncrementalBidPercentage
1113
+ class HourTargetBid
1114
+ attr_accessor :hour
1115
+ attr_accessor :incrementalBid
1116
+
1117
+ def initialize(hour = nil, incrementalBid = nil)
1118
+ @hour = hour
1119
+ @incrementalBid = incrementalBid
1120
+ end
1121
+ end
1122
+
1123
+ # {https://adcenter.microsoft.com/v7}LocationTarget
1124
+ # businessTarget - BusinessTarget
1125
+ # cityTarget - CityTarget
1126
+ # countryTarget - CountryTarget
1127
+ # metroAreaTarget - MetroAreaTarget
1128
+ # radiusTarget - RadiusTarget
1129
+ # stateTarget - StateTarget
1130
+ # targetAllLocations - SOAP::SOAPBoolean
1131
+ class LocationTarget
1132
+ attr_accessor :businessTarget
1133
+ attr_accessor :cityTarget
1134
+ attr_accessor :countryTarget
1135
+ attr_accessor :metroAreaTarget
1136
+ attr_accessor :radiusTarget
1137
+ attr_accessor :stateTarget
1138
+ attr_accessor :targetAllLocations
1139
+
1140
+ def initialize(businessTarget = nil, cityTarget = nil, countryTarget = nil, metroAreaTarget = nil, radiusTarget = nil, stateTarget = nil, targetAllLocations = nil)
1141
+ @businessTarget = businessTarget
1142
+ @cityTarget = cityTarget
1143
+ @countryTarget = countryTarget
1144
+ @metroAreaTarget = metroAreaTarget
1145
+ @radiusTarget = radiusTarget
1146
+ @stateTarget = stateTarget
1147
+ @targetAllLocations = targetAllLocations
1148
+ end
1149
+ end
1150
+
1151
+ # {https://adcenter.microsoft.com/v7}BusinessTarget
1152
+ # bids - ArrayOfBusinessTargetBid
1153
+ class BusinessTarget
1154
+ attr_accessor :bids
1155
+
1156
+ def initialize(bids = nil)
1157
+ @bids = bids
1158
+ end
1159
+ end
1160
+
1161
+ # {https://adcenter.microsoft.com/v7}ArrayOfBusinessTargetBid
1162
+ class ArrayOfBusinessTargetBid < ::Array
1163
+ end
1164
+
1165
+ # {https://adcenter.microsoft.com/v7}BusinessTargetBid
1166
+ # businessId - SOAP::SOAPLong
1167
+ # incrementalBid - IncrementalBidPercentage
1168
+ # radius - SOAP::SOAPInt
1169
+ class BusinessTargetBid
1170
+ attr_accessor :businessId
1171
+ attr_accessor :incrementalBid
1172
+ attr_accessor :radius
1173
+
1174
+ def initialize(businessId = nil, incrementalBid = nil, radius = nil)
1175
+ @businessId = businessId
1176
+ @incrementalBid = incrementalBid
1177
+ @radius = radius
1178
+ end
1179
+ end
1180
+
1181
+ # {https://adcenter.microsoft.com/v7}CityTarget
1182
+ # bids - ArrayOfCityTargetBid
1183
+ class CityTarget
1184
+ attr_accessor :bids
1185
+
1186
+ def initialize(bids = nil)
1187
+ @bids = bids
1188
+ end
1189
+ end
1190
+
1191
+ # {https://adcenter.microsoft.com/v7}ArrayOfCityTargetBid
1192
+ class ArrayOfCityTargetBid < ::Array
1193
+ end
1194
+
1195
+ # {https://adcenter.microsoft.com/v7}CityTargetBid
1196
+ # city - SOAP::SOAPString
1197
+ # incrementalBid - IncrementalBidPercentage
1198
+ class CityTargetBid
1199
+ attr_accessor :city
1200
+ attr_accessor :incrementalBid
1201
+
1202
+ def initialize(city = nil, incrementalBid = nil)
1203
+ @city = city
1204
+ @incrementalBid = incrementalBid
1205
+ end
1206
+ end
1207
+
1208
+ # {https://adcenter.microsoft.com/v7}CountryTarget
1209
+ # bids - ArrayOfCountryTargetBid
1210
+ class CountryTarget
1211
+ attr_accessor :bids
1212
+
1213
+ def initialize(bids = nil)
1214
+ @bids = bids
1215
+ end
1216
+ end
1217
+
1218
+ # {https://adcenter.microsoft.com/v7}ArrayOfCountryTargetBid
1219
+ class ArrayOfCountryTargetBid < ::Array
1220
+ end
1221
+
1222
+ # {https://adcenter.microsoft.com/v7}CountryTargetBid
1223
+ # countryAndRegion - SOAP::SOAPString
1224
+ # incrementalBid - IncrementalBidPercentage
1225
+ class CountryTargetBid
1226
+ attr_accessor :countryAndRegion
1227
+ attr_accessor :incrementalBid
1228
+
1229
+ def initialize(countryAndRegion = nil, incrementalBid = nil)
1230
+ @countryAndRegion = countryAndRegion
1231
+ @incrementalBid = incrementalBid
1232
+ end
1233
+ end
1234
+
1235
+ # {https://adcenter.microsoft.com/v7}MetroAreaTarget
1236
+ # bids - ArrayOfMetroAreaTargetBid
1237
+ class MetroAreaTarget
1238
+ attr_accessor :bids
1239
+
1240
+ def initialize(bids = nil)
1241
+ @bids = bids
1242
+ end
1243
+ end
1244
+
1245
+ # {https://adcenter.microsoft.com/v7}ArrayOfMetroAreaTargetBid
1246
+ class ArrayOfMetroAreaTargetBid < ::Array
1247
+ end
1248
+
1249
+ # {https://adcenter.microsoft.com/v7}MetroAreaTargetBid
1250
+ # incrementalBid - IncrementalBidPercentage
1251
+ # metroArea - SOAP::SOAPString
1252
+ class MetroAreaTargetBid
1253
+ attr_accessor :incrementalBid
1254
+ attr_accessor :metroArea
1255
+
1256
+ def initialize(incrementalBid = nil, metroArea = nil)
1257
+ @incrementalBid = incrementalBid
1258
+ @metroArea = metroArea
1259
+ end
1260
+ end
1261
+
1262
+ # {https://adcenter.microsoft.com/v7}RadiusTarget
1263
+ # bids - ArrayOfRadiusTargetBid
1264
+ class RadiusTarget
1265
+ attr_accessor :bids
1266
+
1267
+ def initialize(bids = nil)
1268
+ @bids = bids
1269
+ end
1270
+ end
1271
+
1272
+ # {https://adcenter.microsoft.com/v7}ArrayOfRadiusTargetBid
1273
+ class ArrayOfRadiusTargetBid < ::Array
1274
+ end
1275
+
1276
+ # {https://adcenter.microsoft.com/v7}RadiusTargetBid
1277
+ # incrementalBid - IncrementalBidPercentage
1278
+ # latitudeDegrees - SOAP::SOAPDouble
1279
+ # longitudeDegrees - SOAP::SOAPDouble
1280
+ # radius - SOAP::SOAPInt
1281
+ class RadiusTargetBid
1282
+ attr_accessor :incrementalBid
1283
+ attr_accessor :latitudeDegrees
1284
+ attr_accessor :longitudeDegrees
1285
+ attr_accessor :radius
1286
+
1287
+ def initialize(incrementalBid = nil, latitudeDegrees = nil, longitudeDegrees = nil, radius = nil)
1288
+ @incrementalBid = incrementalBid
1289
+ @latitudeDegrees = latitudeDegrees
1290
+ @longitudeDegrees = longitudeDegrees
1291
+ @radius = radius
1292
+ end
1293
+ end
1294
+
1295
+ # {https://adcenter.microsoft.com/v7}StateTarget
1296
+ # bids - ArrayOfStateTargetBid
1297
+ class StateTarget
1298
+ attr_accessor :bids
1299
+
1300
+ def initialize(bids = nil)
1301
+ @bids = bids
1302
+ end
1303
+ end
1304
+
1305
+ # {https://adcenter.microsoft.com/v7}ArrayOfStateTargetBid
1306
+ class ArrayOfStateTargetBid < ::Array
1307
+ end
1308
+
1309
+ # {https://adcenter.microsoft.com/v7}StateTargetBid
1310
+ # incrementalBid - IncrementalBidPercentage
1311
+ # state - SOAP::SOAPString
1312
+ class StateTargetBid
1313
+ attr_accessor :incrementalBid
1314
+ attr_accessor :state
1315
+
1316
+ def initialize(incrementalBid = nil, state = nil)
1317
+ @incrementalBid = incrementalBid
1318
+ @state = state
1319
+ end
1320
+ end
1321
+
1322
+ # {https://adcenter.microsoft.com/v7}SegmentTarget
1323
+ # bids - ArrayOfSegmentTargetBid
1324
+ class SegmentTarget
1325
+ attr_accessor :bids
1326
+
1327
+ def initialize(bids = nil)
1328
+ @bids = bids
1329
+ end
1330
+ end
1331
+
1332
+ # {https://adcenter.microsoft.com/v7}ArrayOfSegmentTargetBid
1333
+ class ArrayOfSegmentTargetBid < ::Array
1334
+ end
1335
+
1336
+ # {https://adcenter.microsoft.com/v7}SegmentTargetBid
1337
+ # cashBackInfo - CashBackInfo
1338
+ # incrementalBid - IncrementalBidPercentage
1339
+ # param1 - SOAP::SOAPString
1340
+ # param2 - SOAP::SOAPString
1341
+ # param3 - SOAP::SOAPString
1342
+ # segmentId - SOAP::SOAPLong
1343
+ # segmentParam1 - SOAP::SOAPString
1344
+ # segmentParam2 - SOAP::SOAPString
1345
+ class SegmentTargetBid
1346
+ attr_accessor :cashBackInfo
1347
+ attr_accessor :incrementalBid
1348
+ attr_accessor :param1
1349
+ attr_accessor :param2
1350
+ attr_accessor :param3
1351
+ attr_accessor :segmentId
1352
+ attr_accessor :segmentParam1
1353
+ attr_accessor :segmentParam2
1354
+
1355
+ def initialize(cashBackInfo = nil, incrementalBid = nil, param1 = nil, param2 = nil, param3 = nil, segmentId = nil, segmentParam1 = nil, segmentParam2 = nil)
1356
+ @cashBackInfo = cashBackInfo
1357
+ @incrementalBid = incrementalBid
1358
+ @param1 = param1
1359
+ @param2 = param2
1360
+ @param3 = param3
1361
+ @segmentId = segmentId
1362
+ @segmentParam1 = segmentParam1
1363
+ @segmentParam2 = segmentParam2
1364
+ end
1365
+ end
1366
+
1367
+ # {https://adcenter.microsoft.com/v7}ArrayOfTarget
1368
+ class ArrayOfTarget < ::Array
1369
+ end
1370
+
1371
+ # {https://adcenter.microsoft.com/v7}ArrayOfTargetInfo
1372
+ class ArrayOfTargetInfo < ::Array
1373
+ end
1374
+
1375
+ # {https://adcenter.microsoft.com/v7}TargetInfo
1376
+ # id - SOAP::SOAPLong
1377
+ # name - SOAP::SOAPString
1378
+ class TargetInfo
1379
+ attr_accessor :id
1380
+ attr_accessor :name
1381
+
1382
+ def initialize(id = nil, name = nil)
1383
+ @id = id
1384
+ @name = name
1385
+ end
1386
+ end
1387
+
1388
+ # # {https://adapi.microsoft.com}ApplicationFault
1389
+ # # trackingId - SOAP::SOAPString
1390
+ # class ApplicationFault
1391
+ # attr_accessor :trackingId
1392
+ #
1393
+ # def initialize(trackingId = nil)
1394
+ # @trackingId = trackingId
1395
+ # end
1396
+ # end
1397
+
1398
+ # {https://adcenter.microsoft.com/v7}ApiFaultDetail
1399
+ # trackingId - SOAP::SOAPString
1400
+ # batchErrors - ArrayOfBatchError
1401
+ # operationErrors - ArrayOfOperationError
1402
+ class ApiFaultDetail < ::StandardError
1403
+ attr_accessor :trackingId
1404
+ attr_accessor :batchErrors
1405
+ attr_accessor :operationErrors
1406
+
1407
+ def initialize(trackingId = nil, batchErrors = nil, operationErrors = nil)
1408
+ @trackingId = trackingId
1409
+ @batchErrors = batchErrors
1410
+ @operationErrors = operationErrors
1411
+ end
1412
+ end
1413
+
1414
+ # {https://adcenter.microsoft.com/v7}EditorialApiFaultDetail
1415
+ # trackingId - SOAP::SOAPString
1416
+ # batchErrors - ArrayOfBatchError
1417
+ # editorialErrors - ArrayOfEditorialError
1418
+ # operationErrors - ArrayOfOperationError
1419
+ class EditorialApiFaultDetail < ::StandardError
1420
+ attr_accessor :trackingId
1421
+ attr_accessor :batchErrors
1422
+ attr_accessor :editorialErrors
1423
+ attr_accessor :operationErrors
1424
+
1425
+ def initialize(trackingId = nil, batchErrors = nil, editorialErrors = nil, operationErrors = nil)
1426
+ @trackingId = trackingId
1427
+ @batchErrors = batchErrors
1428
+ @editorialErrors = editorialErrors
1429
+ @operationErrors = operationErrors
1430
+ end
1431
+ end
1432
+
1433
+ # # {https://adapi.microsoft.com}AdApiFaultDetail
1434
+ # # trackingId - SOAP::SOAPString
1435
+ # # errors - ArrayOfAdApiError
1436
+ # class AdApiFaultDetail < ::StandardError
1437
+ # attr_accessor :trackingId
1438
+ # attr_accessor :errors
1439
+ #
1440
+ # def initialize(trackingId = nil, errors = nil)
1441
+ # @trackingId = trackingId
1442
+ # @errors = errors
1443
+ # end
1444
+ # end
1445
+
1446
+ # {https://adapi.microsoft.com}ArrayOfAdApiError
1447
+ class ArrayOfAdApiError < ::Array
1448
+ end
1449
+
1450
+ # # {https://adapi.microsoft.com}AdApiError
1451
+ # # code - SOAP::SOAPInt
1452
+ # # detail - SOAP::SOAPString
1453
+ # # errorCode - SOAP::SOAPString
1454
+ # # message - SOAP::SOAPString
1455
+ # class AdApiError
1456
+ # attr_accessor :code
1457
+ # attr_accessor :detail
1458
+ # attr_accessor :errorCode
1459
+ # attr_accessor :message
1460
+ #
1461
+ # def initialize(code = nil, detail = nil, errorCode = nil, message = nil)
1462
+ # @code = code
1463
+ # @detail = detail
1464
+ # @errorCode = errorCode
1465
+ # @message = message
1466
+ # end
1467
+ # end
1468
+
1469
+ # {http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOflong
1470
+ class ArrayOflong < ::Array
1471
+ end
1472
+
1473
+ # {http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfbase64Binary
1474
+ class ArrayOfbase64Binary < ::Array
1475
+ end
1476
+
1477
+ # {http://schemas.microsoft.com/2003/10/Serialization/Arrays}ArrayOfstring
1478
+ class ArrayOfstring < ::Array
1479
+ end
1480
+
1481
+ # {http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts}ArrayOfAdGroupNetwork
1482
+ class ArrayOfAdGroupNetwork < ::Array
1483
+ end
1484
+
1485
+ # {http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts}AdGroupNetwork
1486
+ # adGroupId - SOAP::SOAPLong
1487
+ # network - Network
1488
+ class AdGroupNetwork
1489
+ attr_accessor :adGroupId
1490
+ attr_accessor :network
1491
+
1492
+ def initialize(adGroupId = nil, network = nil)
1493
+ @adGroupId = adGroupId
1494
+ @network = network
1495
+ end
1496
+ end
1497
+
1498
+ # {https://adcenter.microsoft.com/v7}AdEditorialStatus
1499
+ class AdEditorialStatus < ::String
1500
+ Active = AdEditorialStatus.new("Active")
1501
+ Disapproved = AdEditorialStatus.new("Disapproved")
1502
+ Inactive = AdEditorialStatus.new("Inactive")
1503
+ end
1504
+
1505
+ # {https://adcenter.microsoft.com/v7}AdStatus
1506
+ class AdStatus < ::String
1507
+ Active = AdStatus.new("Active")
1508
+ Deleted = AdStatus.new("Deleted")
1509
+ Inactive = AdStatus.new("Inactive")
1510
+ Paused = AdStatus.new("Paused")
1511
+ end
1512
+
1513
+ # {https://adcenter.microsoft.com/v7}AdType
1514
+ class AdType < ::String
1515
+ Image = AdType.new("Image")
1516
+ Mobile = AdType.new("Mobile")
1517
+ RichSearch = AdType.new("RichSearch")
1518
+ Text = AdType.new("Text")
1519
+ end
1520
+
1521
+ # {https://adcenter.microsoft.com/v7}BehavioralBidStatus
1522
+ class BehavioralBidStatus < ::String
1523
+ Active = BehavioralBidStatus.new("Active")
1524
+ Deleted = BehavioralBidStatus.new("Deleted")
1525
+ Inactive = BehavioralBidStatus.new("Inactive")
1526
+ Paused = BehavioralBidStatus.new("Paused")
1527
+ end
1528
+
1529
+ # {https://adcenter.microsoft.com/v7}Language
1530
+ class Language < ::String
1531
+ English = Language.new("English")
1532
+ French = Language.new("French")
1533
+ end
1534
+
1535
+ # {https://adcenter.microsoft.com/v7}Network
1536
+ class Network < ::String
1537
+ OwnedAndOperatedAndSyndicatedSearch = Network.new("OwnedAndOperatedAndSyndicatedSearch")
1538
+ OwnedAndOperatedOnly = Network.new("OwnedAndOperatedOnly")
1539
+ SyndicatedSearchOnly = Network.new("SyndicatedSearchOnly")
1540
+ end
1541
+
1542
+ # {https://adcenter.microsoft.com/v7}CashBackStatus
1543
+ class CashBackStatus < ::String
1544
+ Disable = CashBackStatus.new("Disable")
1545
+ Enable = CashBackStatus.new("Enable")
1546
+ end
1547
+
1548
+ # {https://adcenter.microsoft.com/v7}KeywordEditorialStatus
1549
+ class KeywordEditorialStatus < ::String
1550
+ Active = KeywordEditorialStatus.new("Active")
1551
+ Disapproved = KeywordEditorialStatus.new("Disapproved")
1552
+ Inactive = KeywordEditorialStatus.new("Inactive")
1553
+ end
1554
+
1555
+ # {https://adcenter.microsoft.com/v7}OverridePriority
1556
+ class OverridePriority < ::String
1557
+ KeywordEnable = OverridePriority.new("KeywordEnable")
1558
+ KeywordPriority = OverridePriority.new("KeywordPriority")
1559
+ SegmentEnable = OverridePriority.new("SegmentEnable")
1560
+ SegmentPriority = OverridePriority.new("SegmentPriority")
1561
+ end
1562
+
1563
+ # {https://adcenter.microsoft.com/v7}KeywordStatus
1564
+ class KeywordStatus < ::String
1565
+ Active = KeywordStatus.new("Active")
1566
+ Deleted = KeywordStatus.new("Deleted")
1567
+ Inactive = KeywordStatus.new("Inactive")
1568
+ Paused = KeywordStatus.new("Paused")
1569
+ end
1570
+
1571
+ # {https://adcenter.microsoft.com/v7}PricingModel
1572
+ class PricingModel < ::String
1573
+ Cpc = PricingModel.new("Cpc")
1574
+ Cpm = PricingModel.new("Cpm")
1575
+ end
1576
+
1577
+ # {https://adcenter.microsoft.com/v7}StandardBusinessIcon
1578
+ class StandardBusinessIcon < ::String
1579
+ Accommodations = StandardBusinessIcon.new("Accommodations")
1580
+ BankOrFinanceOrCurrencyExchange = StandardBusinessIcon.new("BankOrFinanceOrCurrencyExchange")
1581
+ BankOrFinanceOrCurrencyExchangeEUR = StandardBusinessIcon.new("BankOrFinanceOrCurrencyExchangeEUR")
1582
+ BankOrFinanceOrCurrencyExchangeUK = StandardBusinessIcon.new("BankOrFinanceOrCurrencyExchangeUK")
1583
+ CafeOrCoffeeShop = StandardBusinessIcon.new("CafeOrCoffeeShop")
1584
+ CarDealerOrServiceOrRental = StandardBusinessIcon.new("CarDealerOrServiceOrRental")
1585
+ FlowersOrGarden = StandardBusinessIcon.new("FlowersOrGarden")
1586
+ GroceryOrDepartmentStore = StandardBusinessIcon.new("GroceryOrDepartmentStore")
1587
+ HairdresserOrBarberOrTailor = StandardBusinessIcon.new("HairdresserOrBarberOrTailor")
1588
+ HardwareOrRepair = StandardBusinessIcon.new("HardwareOrRepair")
1589
+ HousewaresOrRealEstateOrHomeRepair = StandardBusinessIcon.new("HousewaresOrRealEstateOrHomeRepair")
1590
+ MoviesOrVideo = StandardBusinessIcon.new("MoviesOrVideo")
1591
+ PhonesOrServiceProvider = StandardBusinessIcon.new("PhonesOrServiceProvider")
1592
+ PubOrBarOrLiquor = StandardBusinessIcon.new("PubOrBarOrLiquor")
1593
+ RestaurantOrDining = StandardBusinessIcon.new("RestaurantOrDining")
1594
+ ShoppingOrBoutique = StandardBusinessIcon.new("ShoppingOrBoutique")
1595
+ end
1596
+
1597
+ # {https://adcenter.microsoft.com/v7}BusinessGeoCodeStatus
1598
+ class BusinessGeoCodeStatus < ::String
1599
+ Complete = BusinessGeoCodeStatus.new("Complete")
1600
+ Failed = BusinessGeoCodeStatus.new("Failed")
1601
+ Invalid = BusinessGeoCodeStatus.new("Invalid")
1602
+ Pending = BusinessGeoCodeStatus.new("Pending")
1603
+ end
1604
+
1605
+ # {https://adcenter.microsoft.com/v7}Day
1606
+ class Day < ::String
1607
+ Friday = Day.new("Friday")
1608
+ Monday = Day.new("Monday")
1609
+ Saturday = Day.new("Saturday")
1610
+ Sunday = Day.new("Sunday")
1611
+ Thursday = Day.new("Thursday")
1612
+ Tuesday = Day.new("Tuesday")
1613
+ Wednesday = Day.new("Wednesday")
1614
+ end
1615
+
1616
+ # {https://adcenter.microsoft.com/v7}PaymentType
1617
+ class PaymentType < ::String
1618
+ AmericanExpress = PaymentType.new("AmericanExpress")
1619
+ Cash = PaymentType.new("Cash")
1620
+ CashOnDelivery = PaymentType.new("CashOnDelivery")
1621
+ DinersClub = PaymentType.new("DinersClub")
1622
+ DirectDebit = PaymentType.new("DirectDebit")
1623
+ Invoice = PaymentType.new("Invoice")
1624
+ MasterCard = PaymentType.new("MasterCard")
1625
+ Other = PaymentType.new("Other")
1626
+ PayPal = PaymentType.new("PayPal")
1627
+ TravellersCheck = PaymentType.new("TravellersCheck")
1628
+ Visa = PaymentType.new("Visa")
1629
+ end
1630
+
1631
+ # {https://adcenter.microsoft.com/v7}BusinessStatus
1632
+ class BusinessStatus < ::String
1633
+ Active = BusinessStatus.new("Active")
1634
+ Inactive = BusinessStatus.new("Inactive")
1635
+ Pending = BusinessStatus.new("Pending")
1636
+ end
1637
+
1638
+ # {https://adcenter.microsoft.com/v7}SitePlacementStatus
1639
+ class SitePlacementStatus < ::String
1640
+ Active = SitePlacementStatus.new("Active")
1641
+ Deleted = SitePlacementStatus.new("Deleted")
1642
+ Inactive = SitePlacementStatus.new("Inactive")
1643
+ Paused = SitePlacementStatus.new("Paused")
1644
+ end
1645
+
1646
+ # {https://adcenter.microsoft.com/v7}BudgetLimitType
1647
+ class BudgetLimitType < ::String
1648
+ DailyBudgetWithMaximumMonthlySpend = BudgetLimitType.new("DailyBudgetWithMaximumMonthlySpend")
1649
+ MonthlyBudgetDivideDailyAcrossMonth = BudgetLimitType.new("MonthlyBudgetDivideDailyAcrossMonth")
1650
+ MonthlyBudgetSpendUntilDepleted = BudgetLimitType.new("MonthlyBudgetSpendUntilDepleted")
1651
+ end
1652
+
1653
+ # {https://adcenter.microsoft.com/v7}CampaignStatus
1654
+ class CampaignStatus < ::String
1655
+ Active = CampaignStatus.new("Active")
1656
+ BudgetAndManualPaused = CampaignStatus.new("BudgetAndManualPaused")
1657
+ BudgetPaused = CampaignStatus.new("BudgetPaused")
1658
+ Deleted = CampaignStatus.new("Deleted")
1659
+ Paused = CampaignStatus.new("Paused")
1660
+ end
1661
+
1662
+ # {https://adcenter.microsoft.com/v7}AdDistribution
1663
+ # contains list of AdDistribution::*
1664
+ class AdDistribution < ::Array
1665
+ Content = "Content"
1666
+ Search = "Search"
1667
+ end
1668
+
1669
+ # {https://adcenter.microsoft.com/v7}BiddingModel
1670
+ class BiddingModel < ::String
1671
+ BehavioralBid = BiddingModel.new("BehavioralBid")
1672
+ Keyword = BiddingModel.new("Keyword")
1673
+ SitePlacement = BiddingModel.new("SitePlacement")
1674
+ end
1675
+
1676
+ # {https://adcenter.microsoft.com/v7}AdGroupStatus
1677
+ class AdGroupStatus < ::String
1678
+ Active = AdGroupStatus.new("Active")
1679
+ Deleted = AdGroupStatus.new("Deleted")
1680
+ Draft = AdGroupStatus.new("Draft")
1681
+ Paused = AdGroupStatus.new("Paused")
1682
+ end
1683
+
1684
+ # {https://adcenter.microsoft.com/v7}AgeRange
1685
+ class AgeRange < ::String
1686
+ EighteenToTwentyFive = AgeRange.new("EighteenToTwentyFive")
1687
+ FiftyToSixtyFive = AgeRange.new("FiftyToSixtyFive")
1688
+ SixtyFiveAndAbove = AgeRange.new("SixtyFiveAndAbove")
1689
+ ThirtyFiveToFifty = AgeRange.new("ThirtyFiveToFifty")
1690
+ TwentyFiveToThirtyFive = AgeRange.new("TwentyFiveToThirtyFive")
1691
+ end
1692
+
1693
+ # {https://adcenter.microsoft.com/v7}IncrementalBidPercentage
1694
+ class IncrementalBidPercentage < ::String
1695
+ EightyPercent = IncrementalBidPercentage.new("EightyPercent")
1696
+ FiftyPercent = IncrementalBidPercentage.new("FiftyPercent")
1697
+ FortyPercent = IncrementalBidPercentage.new("FortyPercent")
1698
+ NegativeEightyPercent = IncrementalBidPercentage.new("NegativeEightyPercent")
1699
+ NegativeFiftyPercent = IncrementalBidPercentage.new("NegativeFiftyPercent")
1700
+ NegativeFortyPercent = IncrementalBidPercentage.new("NegativeFortyPercent")
1701
+ NegativeNinetyPercent = IncrementalBidPercentage.new("NegativeNinetyPercent")
1702
+ NegativeOneHundredPercent = IncrementalBidPercentage.new("NegativeOneHundredPercent")
1703
+ NegativeSeventyPercent = IncrementalBidPercentage.new("NegativeSeventyPercent")
1704
+ NegativeSixtyPercent = IncrementalBidPercentage.new("NegativeSixtyPercent")
1705
+ NegativeTenPercent = IncrementalBidPercentage.new("NegativeTenPercent")
1706
+ NegativeThirtyPercent = IncrementalBidPercentage.new("NegativeThirtyPercent")
1707
+ NegativeTwentyPercent = IncrementalBidPercentage.new("NegativeTwentyPercent")
1708
+ NinetyPercent = IncrementalBidPercentage.new("NinetyPercent")
1709
+ OneHundredPercent = IncrementalBidPercentage.new("OneHundredPercent")
1710
+ SeventyPercent = IncrementalBidPercentage.new("SeventyPercent")
1711
+ SixtyPercent = IncrementalBidPercentage.new("SixtyPercent")
1712
+ TenPercent = IncrementalBidPercentage.new("TenPercent")
1713
+ ThirtyPercent = IncrementalBidPercentage.new("ThirtyPercent")
1714
+ TwentyPercent = IncrementalBidPercentage.new("TwentyPercent")
1715
+ ZeroPercent = IncrementalBidPercentage.new("ZeroPercent")
1716
+ end
1717
+
1718
+ # {https://adcenter.microsoft.com/v7}DeviceType
1719
+ class DeviceType < ::String
1720
+ Computers = DeviceType.new("Computers")
1721
+ Smartphones = DeviceType.new("Smartphones")
1722
+ end
1723
+
1724
+ # {https://adcenter.microsoft.com/v7}GenderType
1725
+ class GenderType < ::String
1726
+ Female = GenderType.new("Female")
1727
+ Male = GenderType.new("Male")
1728
+ end
1729
+
1730
+ # {https://adcenter.microsoft.com/v7}HourRange
1731
+ class HourRange < ::String
1732
+ ElevenAMToTwoPM = HourRange.new("ElevenAMToTwoPM")
1733
+ ElevenPMToThreeAM = HourRange.new("ElevenPMToThreeAM")
1734
+ SevenAMToElevenAM = HourRange.new("SevenAMToElevenAM")
1735
+ SixPMToElevenPM = HourRange.new("SixPMToElevenPM")
1736
+ ThreeAMToSevenAM = HourRange.new("ThreeAMToSevenAM")
1737
+ TwoPMToSixPM = HourRange.new("TwoPMToSixPM")
1738
+ end
1739
+
1740
+ # {http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts}AdComponent
1741
+ class AdComponent < ::String
1742
+ Ad = AdComponent.new("Ad")
1743
+ AdDescription = AdComponent.new("AdDescription")
1744
+ AdTitle = AdComponent.new("AdTitle")
1745
+ AdTitleDescription = AdComponent.new("AdTitleDescription")
1746
+ AltText = AdComponent.new("AltText")
1747
+ Asset = AdComponent.new("Asset")
1748
+ Association = AdComponent.new("Association")
1749
+ Audio = AdComponent.new("Audio")
1750
+ BiddingKeyword = AdComponent.new("BiddingKeyword")
1751
+ BusinessName = AdComponent.new("BusinessName")
1752
+ CAsset = AdComponent.new("CAsset")
1753
+ CashbackTextParam = AdComponent.new("CashbackTextParam")
1754
+ Destination = AdComponent.new("Destination")
1755
+ DestinationUrl = AdComponent.new("DestinationUrl")
1756
+ DisplayUrl = AdComponent.new("DisplayUrl")
1757
+ Flash = AdComponent.new("Flash")
1758
+ Image = AdComponent.new("Image")
1759
+ Keyword = AdComponent.new("Keyword")
1760
+ KeywordParam1 = AdComponent.new("KeywordParam1")
1761
+ KeywordParam2 = AdComponent.new("KeywordParam2")
1762
+ KeywordParam3 = AdComponent.new("KeywordParam3")
1763
+ LandingUrl = AdComponent.new("LandingUrl")
1764
+ Order = AdComponent.new("Order")
1765
+ PhoneNumber = AdComponent.new("PhoneNumber")
1766
+ Script = AdComponent.new("Script")
1767
+ SiteDomain = AdComponent.new("SiteDomain")
1768
+ Unknown = AdComponent.new("Unknown")
1769
+ Video = AdComponent.new("Video")
1770
+ end
1771
+
1772
+ # {https://adcenter.microsoft.com/v7}UpdateBehavioralBidsRequest
1773
+ # adGroupId - SOAP::SOAPLong
1774
+ # behavioralBids - ArrayOfBehavioralBid
1775
+ class UpdateBehavioralBidsRequest
1776
+ attr_accessor :adGroupId
1777
+ attr_accessor :behavioralBids
1778
+
1779
+ def initialize(adGroupId = nil, behavioralBids = nil)
1780
+ @adGroupId = adGroupId
1781
+ @behavioralBids = behavioralBids
1782
+ end
1783
+ end
1784
+
1785
+ # {https://adcenter.microsoft.com/v7}UpdateBehavioralBidsResponse
1786
+ class UpdateBehavioralBidsResponse
1787
+ def initialize
1788
+ end
1789
+ end
1790
+
1791
+ # {https://adcenter.microsoft.com/v7}GetCustomSegmentsRequest
1792
+ class GetCustomSegmentsRequest
1793
+ def initialize
1794
+ end
1795
+ end
1796
+
1797
+ # {https://adcenter.microsoft.com/v7}GetCustomSegmentsResponse
1798
+ # customSegments - ArrayOfSegment
1799
+ class GetCustomSegmentsResponse
1800
+ attr_accessor :customSegments
1801
+
1802
+ def initialize(customSegments = nil)
1803
+ @customSegments = customSegments
1804
+ end
1805
+ end
1806
+
1807
+ # {https://adcenter.microsoft.com/v7}AddSegmentsRequest
1808
+ # segments - ArrayOfSegment
1809
+ class AddSegmentsRequest
1810
+ attr_accessor :segments
1811
+
1812
+ def initialize(segments = nil)
1813
+ @segments = segments
1814
+ end
1815
+ end
1816
+
1817
+ # {https://adcenter.microsoft.com/v7}AddSegmentsResponse
1818
+ # segmentIds - ArrayOflong
1819
+ class AddSegmentsResponse
1820
+ attr_accessor :segmentIds
1821
+
1822
+ def initialize(segmentIds = nil)
1823
+ @segmentIds = segmentIds
1824
+ end
1825
+ end
1826
+
1827
+ # {https://adcenter.microsoft.com/v7}DeleteSegmentsRequest
1828
+ # segmentIds - ArrayOflong
1829
+ class DeleteSegmentsRequest
1830
+ attr_accessor :segmentIds
1831
+
1832
+ def initialize(segmentIds = nil)
1833
+ @segmentIds = segmentIds
1834
+ end
1835
+ end
1836
+
1837
+ # {https://adcenter.microsoft.com/v7}DeleteSegmentsResponse
1838
+ class DeleteSegmentsResponse
1839
+ def initialize
1840
+ end
1841
+ end
1842
+
1843
+ # {https://adcenter.microsoft.com/v7}GetSegmentsByIdsRequest
1844
+ # segmentIds - ArrayOflong
1845
+ class GetSegmentsByIdsRequest
1846
+ attr_accessor :segmentIds
1847
+
1848
+ def initialize(segmentIds = nil)
1849
+ @segmentIds = segmentIds
1850
+ end
1851
+ end
1852
+
1853
+ # {https://adcenter.microsoft.com/v7}GetSegmentsByIdsResponse
1854
+ # segments - ArrayOfSegment
1855
+ class GetSegmentsByIdsResponse
1856
+ attr_accessor :segments
1857
+
1858
+ def initialize(segments = nil)
1859
+ @segments = segments
1860
+ end
1861
+ end
1862
+
1863
+ # {https://adcenter.microsoft.com/v7}GetSegmentsRequest
1864
+ class GetSegmentsRequest
1865
+ def initialize
1866
+ end
1867
+ end
1868
+
1869
+ # {https://adcenter.microsoft.com/v7}GetSegmentsResponse
1870
+ # segments - ArrayOfSegment
1871
+ class GetSegmentsResponse
1872
+ attr_accessor :segments
1873
+
1874
+ def initialize(segments = nil)
1875
+ @segments = segments
1876
+ end
1877
+ end
1878
+
1879
+ # {https://adcenter.microsoft.com/v7}SetUsersToSegmentsRequest
1880
+ # segmentId - SOAP::SOAPLong
1881
+ # userHash - ArrayOfbase64Binary
1882
+ class SetUsersToSegmentsRequest
1883
+ attr_accessor :segmentId
1884
+ attr_accessor :userHash
1885
+
1886
+ def initialize(segmentId = nil, userHash = nil)
1887
+ @segmentId = segmentId
1888
+ @userHash = userHash
1889
+ end
1890
+ end
1891
+
1892
+ # {https://adcenter.microsoft.com/v7}SetUsersToSegmentsResponse
1893
+ class SetUsersToSegmentsResponse
1894
+ def initialize
1895
+ end
1896
+ end
1897
+
1898
+ # {https://adcenter.microsoft.com/v7}DeleteUsersFromSegmentRequest
1899
+ # userHash - ArrayOfbase64Binary
1900
+ class DeleteUsersFromSegmentRequest
1901
+ attr_accessor :userHash
1902
+
1903
+ def initialize(userHash = nil)
1904
+ @userHash = userHash
1905
+ end
1906
+ end
1907
+
1908
+ # {https://adcenter.microsoft.com/v7}DeleteUsersFromSegmentResponse
1909
+ class DeleteUsersFromSegmentResponse
1910
+ def initialize
1911
+ end
1912
+ end
1913
+
1914
+ # {https://adcenter.microsoft.com/v7}GetNormalizedStringsRequest
1915
+ # strings - ArrayOfstring
1916
+ # language - Language
1917
+ class GetNormalizedStringsRequest
1918
+ attr_accessor :strings
1919
+ attr_accessor :language
1920
+
1921
+ def initialize(strings = nil, language = nil)
1922
+ @strings = strings
1923
+ @language = language
1924
+ end
1925
+ end
1926
+
1927
+ # {https://adcenter.microsoft.com/v7}GetNormalizedStringsResponse
1928
+ # normalizedStrings - ArrayOfstring
1929
+ class GetNormalizedStringsResponse
1930
+ attr_accessor :normalizedStrings
1931
+
1932
+ def initialize(normalizedStrings = nil)
1933
+ @normalizedStrings = normalizedStrings
1934
+ end
1935
+ end
1936
+
1937
+ # {https://adcenter.microsoft.com/v7}GetKeywordEditorialReasonsByIdsRequest
1938
+ # keywordIds - ArrayOflong
1939
+ # accountId - SOAP::SOAPLong
1940
+ class GetKeywordEditorialReasonsByIdsRequest
1941
+ attr_accessor :keywordIds
1942
+ attr_accessor :accountId
1943
+
1944
+ def initialize(keywordIds = nil, accountId = nil)
1945
+ @keywordIds = keywordIds
1946
+ @accountId = accountId
1947
+ end
1948
+ end
1949
+
1950
+ # {https://adcenter.microsoft.com/v7}GetKeywordEditorialReasonsByIdsResponse
1951
+ # editorialReasons - ArrayOfEditorialReasonCollection
1952
+ class GetKeywordEditorialReasonsByIdsResponse
1953
+ attr_accessor :editorialReasons
1954
+
1955
+ def initialize(editorialReasons = nil)
1956
+ @editorialReasons = editorialReasons
1957
+ end
1958
+ end
1959
+
1960
+ # {https://adcenter.microsoft.com/v7}GetAdEditorialReasonsByIdsRequest
1961
+ # adIds - ArrayOflong
1962
+ # accountId - SOAP::SOAPLong
1963
+ class GetAdEditorialReasonsByIdsRequest
1964
+ attr_accessor :adIds
1965
+ attr_accessor :accountId
1966
+
1967
+ def initialize(adIds = nil, accountId = nil)
1968
+ @adIds = adIds
1969
+ @accountId = accountId
1970
+ end
1971
+ end
1972
+
1973
+ # {https://adcenter.microsoft.com/v7}GetAdEditorialReasonsByIdsResponse
1974
+ # editorialReasons - ArrayOfEditorialReasonCollection
1975
+ class GetAdEditorialReasonsByIdsResponse
1976
+ attr_accessor :editorialReasons
1977
+
1978
+ def initialize(editorialReasons = nil)
1979
+ @editorialReasons = editorialReasons
1980
+ end
1981
+ end
1982
+
1983
+ # {https://adcenter.microsoft.com/v7}GetNetworksByAdGroupIdsRequest
1984
+ # campaignId - SOAP::SOAPLong
1985
+ # adGroupIds - ArrayOflong
1986
+ class GetNetworksByAdGroupIdsRequest
1987
+ attr_accessor :campaignId
1988
+ attr_accessor :adGroupIds
1989
+
1990
+ def initialize(campaignId = nil, adGroupIds = nil)
1991
+ @campaignId = campaignId
1992
+ @adGroupIds = adGroupIds
1993
+ end
1994
+ end
1995
+
1996
+ # {https://adcenter.microsoft.com/v7}GetNetworksByAdGroupIdsResponse
1997
+ # adGroupNetworks - ArrayOfAdGroupNetwork
1998
+ class GetNetworksByAdGroupIdsResponse
1999
+ attr_accessor :adGroupNetworks
2000
+
2001
+ def initialize(adGroupNetworks = nil)
2002
+ @adGroupNetworks = adGroupNetworks
2003
+ end
2004
+ end
2005
+
2006
+ # {https://adcenter.microsoft.com/v7}SetNetworksToAdGroupsRequest
2007
+ # campaignId - SOAP::SOAPLong
2008
+ # adGroupNetworks - ArrayOfAdGroupNetwork
2009
+ class SetNetworksToAdGroupsRequest
2010
+ attr_accessor :campaignId
2011
+ attr_accessor :adGroupNetworks
2012
+
2013
+ def initialize(campaignId = nil, adGroupNetworks = nil)
2014
+ @campaignId = campaignId
2015
+ @adGroupNetworks = adGroupNetworks
2016
+ end
2017
+ end
2018
+
2019
+ # {https://adcenter.microsoft.com/v7}SetNetworksToAdGroupsResponse
2020
+ class SetNetworksToAdGroupsResponse
2021
+ def initialize
2022
+ end
2023
+ end
2024
+
2025
+ # {https://adcenter.microsoft.com/v7}AddAdsRequest
2026
+ # adGroupId - SOAP::SOAPLong
2027
+ # ads - ArrayOfAd
2028
+ class AddAdsRequest
2029
+ attr_accessor :adGroupId
2030
+ attr_accessor :ads
2031
+
2032
+ def initialize(adGroupId = nil, ads = nil)
2033
+ @adGroupId = adGroupId
2034
+ @ads = ads
2035
+ end
2036
+ end
2037
+
2038
+ # {https://adcenter.microsoft.com/v7}AddAdsResponse
2039
+ # adIds - ArrayOflong
2040
+ class AddAdsResponse
2041
+ attr_accessor :adIds
2042
+
2043
+ def initialize(adIds = nil)
2044
+ @adIds = adIds
2045
+ end
2046
+ end
2047
+
2048
+ # {https://adcenter.microsoft.com/v7}DeleteAdsRequest
2049
+ # adGroupId - SOAP::SOAPLong
2050
+ # adIds - ArrayOflong
2051
+ class DeleteAdsRequest
2052
+ attr_accessor :adGroupId
2053
+ attr_accessor :adIds
2054
+
2055
+ def initialize(adGroupId = nil, adIds = nil)
2056
+ @adGroupId = adGroupId
2057
+ @adIds = adIds
2058
+ end
2059
+ end
2060
+
2061
+ # {https://adcenter.microsoft.com/v7}DeleteAdsResponse
2062
+ class DeleteAdsResponse
2063
+ def initialize
2064
+ end
2065
+ end
2066
+
2067
+ # {https://adcenter.microsoft.com/v7}GetAdsByEditorialStatusRequest
2068
+ # adGroupId - SOAP::SOAPLong
2069
+ # editorialStatus - AdEditorialStatus
2070
+ class GetAdsByEditorialStatusRequest
2071
+ attr_accessor :adGroupId
2072
+ attr_accessor :editorialStatus
2073
+
2074
+ def initialize(adGroupId = nil, editorialStatus = nil)
2075
+ @adGroupId = adGroupId
2076
+ @editorialStatus = editorialStatus
2077
+ end
2078
+ end
2079
+
2080
+ # {https://adcenter.microsoft.com/v7}GetAdsByEditorialStatusResponse
2081
+ # ads - ArrayOfAd
2082
+ class GetAdsByEditorialStatusResponse
2083
+ attr_accessor :ads
2084
+
2085
+ def initialize(ads = nil)
2086
+ @ads = ads
2087
+ end
2088
+ end
2089
+
2090
+ # {https://adcenter.microsoft.com/v7}GetAdsByIdsRequest
2091
+ # adGroupId - SOAP::SOAPLong
2092
+ # adIds - ArrayOflong
2093
+ class GetAdsByIdsRequest
2094
+ attr_accessor :adGroupId
2095
+ attr_accessor :adIds
2096
+
2097
+ def initialize(adGroupId = nil, adIds = nil)
2098
+ @adGroupId = adGroupId
2099
+ @adIds = adIds
2100
+ end
2101
+ end
2102
+
2103
+ # {https://adcenter.microsoft.com/v7}GetAdsByIdsResponse
2104
+ # ads - ArrayOfAd
2105
+ class GetAdsByIdsResponse
2106
+ attr_accessor :ads
2107
+
2108
+ def initialize(ads = nil)
2109
+ @ads = ads
2110
+ end
2111
+ end
2112
+
2113
+ # {https://adcenter.microsoft.com/v7}GetAdsByAdGroupIdRequest
2114
+ # adGroupId - SOAP::SOAPLong
2115
+ class GetAdsByAdGroupIdRequest
2116
+ attr_accessor :adGroupId
2117
+
2118
+ def initialize(adGroupId = nil)
2119
+ @adGroupId = adGroupId
2120
+ end
2121
+ end
2122
+
2123
+ # {https://adcenter.microsoft.com/v7}GetAdsByAdGroupIdResponse
2124
+ # ads - ArrayOfAd
2125
+ class GetAdsByAdGroupIdResponse
2126
+ attr_accessor :ads
2127
+
2128
+ def initialize(ads = nil)
2129
+ @ads = ads
2130
+ end
2131
+ end
2132
+
2133
+ # {https://adcenter.microsoft.com/v7}UpdateAdsRequest
2134
+ # adGroupId - SOAP::SOAPLong
2135
+ # ads - ArrayOfAd
2136
+ class UpdateAdsRequest
2137
+ attr_accessor :adGroupId
2138
+ attr_accessor :ads
2139
+
2140
+ def initialize(adGroupId = nil, ads = nil)
2141
+ @adGroupId = adGroupId
2142
+ @ads = ads
2143
+ end
2144
+ end
2145
+
2146
+ # {https://adcenter.microsoft.com/v7}UpdateAdsResponse
2147
+ class UpdateAdsResponse
2148
+ def initialize
2149
+ end
2150
+ end
2151
+
2152
+ # {https://adcenter.microsoft.com/v7}PauseAdsRequest
2153
+ # adGroupId - SOAP::SOAPLong
2154
+ # adIds - ArrayOflong
2155
+ class PauseAdsRequest
2156
+ attr_accessor :adGroupId
2157
+ attr_accessor :adIds
2158
+
2159
+ def initialize(adGroupId = nil, adIds = nil)
2160
+ @adGroupId = adGroupId
2161
+ @adIds = adIds
2162
+ end
2163
+ end
2164
+
2165
+ # {https://adcenter.microsoft.com/v7}PauseAdsResponse
2166
+ class PauseAdsResponse
2167
+ def initialize
2168
+ end
2169
+ end
2170
+
2171
+ # {https://adcenter.microsoft.com/v7}ResumeAdsRequest
2172
+ # adGroupId - SOAP::SOAPLong
2173
+ # adIds - ArrayOflong
2174
+ class ResumeAdsRequest
2175
+ attr_accessor :adGroupId
2176
+ attr_accessor :adIds
2177
+
2178
+ def initialize(adGroupId = nil, adIds = nil)
2179
+ @adGroupId = adGroupId
2180
+ @adIds = adIds
2181
+ end
2182
+ end
2183
+
2184
+ # {https://adcenter.microsoft.com/v7}ResumeAdsResponse
2185
+ class ResumeAdsResponse
2186
+ def initialize
2187
+ end
2188
+ end
2189
+
2190
+ # {https://adcenter.microsoft.com/v7}AddKeywordsRequest
2191
+ # adGroupId - SOAP::SOAPLong
2192
+ # keywords - ArrayOfKeyword
2193
+ class AddKeywordsRequest
2194
+ attr_accessor :adGroupId
2195
+ attr_accessor :keywords
2196
+
2197
+ def initialize(adGroupId = nil, keywords = nil)
2198
+ @adGroupId = adGroupId
2199
+ @keywords = keywords
2200
+ end
2201
+ end
2202
+
2203
+ # {https://adcenter.microsoft.com/v7}AddKeywordsResponse
2204
+ # keywordIds - ArrayOflong
2205
+ class AddKeywordsResponse
2206
+ attr_accessor :keywordIds
2207
+
2208
+ def initialize(keywordIds = nil)
2209
+ @keywordIds = keywordIds
2210
+ end
2211
+ end
2212
+
2213
+ # {https://adcenter.microsoft.com/v7}DeleteKeywordsRequest
2214
+ # adGroupId - SOAP::SOAPLong
2215
+ # keywordIds - ArrayOflong
2216
+ class DeleteKeywordsRequest
2217
+ attr_accessor :adGroupId
2218
+ attr_accessor :keywordIds
2219
+
2220
+ def initialize(adGroupId = nil, keywordIds = nil)
2221
+ @adGroupId = adGroupId
2222
+ @keywordIds = keywordIds
2223
+ end
2224
+ end
2225
+
2226
+ # {https://adcenter.microsoft.com/v7}DeleteKeywordsResponse
2227
+ class DeleteKeywordsResponse
2228
+ def initialize
2229
+ end
2230
+ end
2231
+
2232
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByEditorialStatusRequest
2233
+ # adGroupId - SOAP::SOAPLong
2234
+ # editorialStatus - KeywordEditorialStatus
2235
+ class GetKeywordsByEditorialStatusRequest
2236
+ attr_accessor :adGroupId
2237
+ attr_accessor :editorialStatus
2238
+
2239
+ def initialize(adGroupId = nil, editorialStatus = nil)
2240
+ @adGroupId = adGroupId
2241
+ @editorialStatus = editorialStatus
2242
+ end
2243
+ end
2244
+
2245
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByEditorialStatusResponse
2246
+ # keywords - ArrayOfKeyword
2247
+ class GetKeywordsByEditorialStatusResponse
2248
+ attr_accessor :keywords
2249
+
2250
+ def initialize(keywords = nil)
2251
+ @keywords = keywords
2252
+ end
2253
+ end
2254
+
2255
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByIdsRequest
2256
+ # adGroupId - SOAP::SOAPLong
2257
+ # keywordIds - ArrayOflong
2258
+ class GetKeywordsByIdsRequest
2259
+ attr_accessor :adGroupId
2260
+ attr_accessor :keywordIds
2261
+
2262
+ def initialize(adGroupId = nil, keywordIds = nil)
2263
+ @adGroupId = adGroupId
2264
+ @keywordIds = keywordIds
2265
+ end
2266
+ end
2267
+
2268
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByIdsResponse
2269
+ # keywords - ArrayOfKeyword
2270
+ class GetKeywordsByIdsResponse
2271
+ attr_accessor :keywords
2272
+
2273
+ def initialize(keywords = nil)
2274
+ @keywords = keywords
2275
+ end
2276
+ end
2277
+
2278
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByAdGroupIdRequest
2279
+ # adGroupId - SOAP::SOAPLong
2280
+ class GetKeywordsByAdGroupIdRequest
2281
+ attr_accessor :adGroupId
2282
+
2283
+ def initialize(adGroupId = nil)
2284
+ @adGroupId = adGroupId
2285
+ end
2286
+ end
2287
+
2288
+ # {https://adcenter.microsoft.com/v7}GetKeywordsByAdGroupIdResponse
2289
+ # keywords - ArrayOfKeyword
2290
+ class GetKeywordsByAdGroupIdResponse
2291
+ attr_accessor :keywords
2292
+
2293
+ def initialize(keywords = nil)
2294
+ @keywords = keywords
2295
+ end
2296
+ end
2297
+
2298
+ # {https://adcenter.microsoft.com/v7}PauseKeywordsRequest
2299
+ # adGroupId - SOAP::SOAPLong
2300
+ # keywordIds - ArrayOflong
2301
+ class PauseKeywordsRequest
2302
+ attr_accessor :adGroupId
2303
+ attr_accessor :keywordIds
2304
+
2305
+ def initialize(adGroupId = nil, keywordIds = nil)
2306
+ @adGroupId = adGroupId
2307
+ @keywordIds = keywordIds
2308
+ end
2309
+ end
2310
+
2311
+ # {https://adcenter.microsoft.com/v7}PauseKeywordsResponse
2312
+ class PauseKeywordsResponse
2313
+ def initialize
2314
+ end
2315
+ end
2316
+
2317
+ # {https://adcenter.microsoft.com/v7}ResumeKeywordsRequest
2318
+ # adGroupId - SOAP::SOAPLong
2319
+ # keywordIds - ArrayOflong
2320
+ class ResumeKeywordsRequest
2321
+ attr_accessor :adGroupId
2322
+ attr_accessor :keywordIds
2323
+
2324
+ def initialize(adGroupId = nil, keywordIds = nil)
2325
+ @adGroupId = adGroupId
2326
+ @keywordIds = keywordIds
2327
+ end
2328
+ end
2329
+
2330
+ # {https://adcenter.microsoft.com/v7}ResumeKeywordsResponse
2331
+ class ResumeKeywordsResponse
2332
+ def initialize
2333
+ end
2334
+ end
2335
+
2336
+ # {https://adcenter.microsoft.com/v7}UpdateKeywordsRequest
2337
+ # adGroupId - SOAP::SOAPLong
2338
+ # keywords - ArrayOfKeyword
2339
+ class UpdateKeywordsRequest
2340
+ attr_accessor :adGroupId
2341
+ attr_accessor :keywords
2342
+
2343
+ def initialize(adGroupId = nil, keywords = nil)
2344
+ @adGroupId = adGroupId
2345
+ @keywords = keywords
2346
+ end
2347
+ end
2348
+
2349
+ # {https://adcenter.microsoft.com/v7}UpdateKeywordsResponse
2350
+ class UpdateKeywordsResponse
2351
+ def initialize
2352
+ end
2353
+ end
2354
+
2355
+ # {https://adcenter.microsoft.com/v7}GetKeywordEstimatesByBidsRequest
2356
+ # accountId - SOAP::SOAPLong
2357
+ # languageAndRegion - SOAP::SOAPString
2358
+ # currency - SOAP::SOAPString
2359
+ # keywordBids - ArrayOfKeywordBid
2360
+ # pricingModel - PricingModel
2361
+ class GetKeywordEstimatesByBidsRequest
2362
+ attr_accessor :accountId
2363
+ attr_accessor :languageAndRegion
2364
+ attr_accessor :currency
2365
+ attr_accessor :keywordBids
2366
+ attr_accessor :pricingModel
2367
+
2368
+ def initialize(accountId = nil, languageAndRegion = nil, currency = nil, keywordBids = nil, pricingModel = nil)
2369
+ @accountId = accountId
2370
+ @languageAndRegion = languageAndRegion
2371
+ @currency = currency
2372
+ @keywordBids = keywordBids
2373
+ @pricingModel = pricingModel
2374
+ end
2375
+ end
2376
+
2377
+ # {https://adcenter.microsoft.com/v7}GetKeywordEstimatesByBidsResponse
2378
+ # keywordEstimates - ArrayOfKeywordEstimate
2379
+ class GetKeywordEstimatesByBidsResponse
2380
+ attr_accessor :keywordEstimates
2381
+
2382
+ def initialize(keywordEstimates = nil)
2383
+ @keywordEstimates = keywordEstimates
2384
+ end
2385
+ end
2386
+
2387
+ # {https://adcenter.microsoft.com/v7}AddBusinessesRequest
2388
+ # businesses - ArrayOfBusiness
2389
+ class AddBusinessesRequest
2390
+ attr_accessor :businesses
2391
+
2392
+ def initialize(businesses = nil)
2393
+ @businesses = businesses
2394
+ end
2395
+ end
2396
+
2397
+ # {https://adcenter.microsoft.com/v7}AddBusinessesResponse
2398
+ # businessIds - ArrayOflong
2399
+ class AddBusinessesResponse
2400
+ attr_accessor :businessIds
2401
+
2402
+ def initialize(businessIds = nil)
2403
+ @businessIds = businessIds
2404
+ end
2405
+ end
2406
+
2407
+ # {https://adcenter.microsoft.com/v7}UpdateBusinessesRequest
2408
+ # businesses - ArrayOfBusiness
2409
+ class UpdateBusinessesRequest
2410
+ attr_accessor :businesses
2411
+
2412
+ def initialize(businesses = nil)
2413
+ @businesses = businesses
2414
+ end
2415
+ end
2416
+
2417
+ # {https://adcenter.microsoft.com/v7}UpdateBusinessesResponse
2418
+ class UpdateBusinessesResponse
2419
+ def initialize
2420
+ end
2421
+ end
2422
+
2423
+ # {https://adcenter.microsoft.com/v7}DeleteBusinessesRequest
2424
+ # businessIds - ArrayOflong
2425
+ class DeleteBusinessesRequest
2426
+ attr_accessor :businessIds
2427
+
2428
+ def initialize(businessIds = nil)
2429
+ @businessIds = businessIds
2430
+ end
2431
+ end
2432
+
2433
+ # {https://adcenter.microsoft.com/v7}DeleteBusinessesResponse
2434
+ class DeleteBusinessesResponse
2435
+ def initialize
2436
+ end
2437
+ end
2438
+
2439
+ # {https://adcenter.microsoft.com/v7}GetBusinessesInfoRequest
2440
+ class GetBusinessesInfoRequest
2441
+ def initialize
2442
+ end
2443
+ end
2444
+
2445
+ # {https://adcenter.microsoft.com/v7}GetBusinessesInfoResponse
2446
+ # businessesInfo - ArrayOfBusinessInfo
2447
+ class GetBusinessesInfoResponse
2448
+ attr_accessor :businessesInfo
2449
+
2450
+ def initialize(businessesInfo = nil)
2451
+ @businessesInfo = businessesInfo
2452
+ end
2453
+ end
2454
+
2455
+ # {https://adcenter.microsoft.com/v7}GetBusinessesByIdsRequest
2456
+ # businessIds - ArrayOflong
2457
+ class GetBusinessesByIdsRequest
2458
+ attr_accessor :businessIds
2459
+
2460
+ def initialize(businessIds = nil)
2461
+ @businessIds = businessIds
2462
+ end
2463
+ end
2464
+
2465
+ # {https://adcenter.microsoft.com/v7}GetBusinessesByIdsResponse
2466
+ # businesses - ArrayOfBusiness
2467
+ class GetBusinessesByIdsResponse
2468
+ attr_accessor :businesses
2469
+
2470
+ def initialize(businesses = nil)
2471
+ @businesses = businesses
2472
+ end
2473
+ end
2474
+
2475
+ # {https://adcenter.microsoft.com/v7}AddSitePlacementsRequest
2476
+ # adGroupId - SOAP::SOAPLong
2477
+ # sitePlacements - ArrayOfSitePlacement
2478
+ class AddSitePlacementsRequest
2479
+ attr_accessor :adGroupId
2480
+ attr_accessor :sitePlacements
2481
+
2482
+ def initialize(adGroupId = nil, sitePlacements = nil)
2483
+ @adGroupId = adGroupId
2484
+ @sitePlacements = sitePlacements
2485
+ end
2486
+ end
2487
+
2488
+ # {https://adcenter.microsoft.com/v7}AddSitePlacementsResponse
2489
+ # sitePlacementIds - ArrayOflong
2490
+ class AddSitePlacementsResponse
2491
+ attr_accessor :sitePlacementIds
2492
+
2493
+ def initialize(sitePlacementIds = nil)
2494
+ @sitePlacementIds = sitePlacementIds
2495
+ end
2496
+ end
2497
+
2498
+ # {https://adcenter.microsoft.com/v7}DeleteSitePlacementsRequest
2499
+ # adGroupId - SOAP::SOAPLong
2500
+ # sitePlacementIds - ArrayOflong
2501
+ class DeleteSitePlacementsRequest
2502
+ attr_accessor :adGroupId
2503
+ attr_accessor :sitePlacementIds
2504
+
2505
+ def initialize(adGroupId = nil, sitePlacementIds = nil)
2506
+ @adGroupId = adGroupId
2507
+ @sitePlacementIds = sitePlacementIds
2508
+ end
2509
+ end
2510
+
2511
+ # {https://adcenter.microsoft.com/v7}DeleteSitePlacementsResponse
2512
+ class DeleteSitePlacementsResponse
2513
+ def initialize
2514
+ end
2515
+ end
2516
+
2517
+ # {https://adcenter.microsoft.com/v7}GetSitePlacementsByIdsRequest
2518
+ # adGroupId - SOAP::SOAPLong
2519
+ # sitePlacementIds - ArrayOflong
2520
+ class GetSitePlacementsByIdsRequest
2521
+ attr_accessor :adGroupId
2522
+ attr_accessor :sitePlacementIds
2523
+
2524
+ def initialize(adGroupId = nil, sitePlacementIds = nil)
2525
+ @adGroupId = adGroupId
2526
+ @sitePlacementIds = sitePlacementIds
2527
+ end
2528
+ end
2529
+
2530
+ # {https://adcenter.microsoft.com/v7}GetSitePlacementsByIdsResponse
2531
+ # sitePlacements - ArrayOfSitePlacement
2532
+ class GetSitePlacementsByIdsResponse
2533
+ attr_accessor :sitePlacements
2534
+
2535
+ def initialize(sitePlacements = nil)
2536
+ @sitePlacements = sitePlacements
2537
+ end
2538
+ end
2539
+
2540
+ # {https://adcenter.microsoft.com/v7}GetSitePlacementsByAdGroupIdRequest
2541
+ # adGroupId - SOAP::SOAPLong
2542
+ class GetSitePlacementsByAdGroupIdRequest
2543
+ attr_accessor :adGroupId
2544
+
2545
+ def initialize(adGroupId = nil)
2546
+ @adGroupId = adGroupId
2547
+ end
2548
+ end
2549
+
2550
+ # {https://adcenter.microsoft.com/v7}GetSitePlacementsByAdGroupIdResponse
2551
+ # sitePlacements - ArrayOfSitePlacement
2552
+ class GetSitePlacementsByAdGroupIdResponse
2553
+ attr_accessor :sitePlacements
2554
+
2555
+ def initialize(sitePlacements = nil)
2556
+ @sitePlacements = sitePlacements
2557
+ end
2558
+ end
2559
+
2560
+ # {https://adcenter.microsoft.com/v7}PauseSitePlacementsRequest
2561
+ # adGroupId - SOAP::SOAPLong
2562
+ # sitePlacementIds - ArrayOflong
2563
+ class PauseSitePlacementsRequest
2564
+ attr_accessor :adGroupId
2565
+ attr_accessor :sitePlacementIds
2566
+
2567
+ def initialize(adGroupId = nil, sitePlacementIds = nil)
2568
+ @adGroupId = adGroupId
2569
+ @sitePlacementIds = sitePlacementIds
2570
+ end
2571
+ end
2572
+
2573
+ # {https://adcenter.microsoft.com/v7}PauseSitePlacementsResponse
2574
+ class PauseSitePlacementsResponse
2575
+ def initialize
2576
+ end
2577
+ end
2578
+
2579
+ # {https://adcenter.microsoft.com/v7}ResumeSitePlacementsRequest
2580
+ # adGroupId - SOAP::SOAPLong
2581
+ # sitePlacementIds - ArrayOflong
2582
+ class ResumeSitePlacementsRequest
2583
+ attr_accessor :adGroupId
2584
+ attr_accessor :sitePlacementIds
2585
+
2586
+ def initialize(adGroupId = nil, sitePlacementIds = nil)
2587
+ @adGroupId = adGroupId
2588
+ @sitePlacementIds = sitePlacementIds
2589
+ end
2590
+ end
2591
+
2592
+ # {https://adcenter.microsoft.com/v7}ResumeSitePlacementsResponse
2593
+ class ResumeSitePlacementsResponse
2594
+ def initialize
2595
+ end
2596
+ end
2597
+
2598
+ # {https://adcenter.microsoft.com/v7}UpdateSitePlacementsRequest
2599
+ # adGroupId - SOAP::SOAPLong
2600
+ # sitePlacements - ArrayOfSitePlacement
2601
+ class UpdateSitePlacementsRequest
2602
+ attr_accessor :adGroupId
2603
+ attr_accessor :sitePlacements
2604
+
2605
+ def initialize(adGroupId = nil, sitePlacements = nil)
2606
+ @adGroupId = adGroupId
2607
+ @sitePlacements = sitePlacements
2608
+ end
2609
+ end
2610
+
2611
+ # {https://adcenter.microsoft.com/v7}UpdateSitePlacementsResponse
2612
+ class UpdateSitePlacementsResponse
2613
+ def initialize
2614
+ end
2615
+ end
2616
+
2617
+ # {https://adcenter.microsoft.com/v7}GetPlacementDetailsForUrlsRequest
2618
+ # urls - ArrayOfstring
2619
+ class GetPlacementDetailsForUrlsRequest
2620
+ attr_accessor :urls
2621
+
2622
+ def initialize(urls = nil)
2623
+ @urls = urls
2624
+ end
2625
+ end
2626
+
2627
+ # {https://adcenter.microsoft.com/v7}GetPlacementDetailsForUrlsResponse
2628
+ # placementDetails - ArrayOfArrayOfPlacementDetail
2629
+ class GetPlacementDetailsForUrlsResponse
2630
+ attr_accessor :placementDetails
2631
+
2632
+ def initialize(placementDetails = nil)
2633
+ @placementDetails = placementDetails
2634
+ end
2635
+ end
2636
+
2637
+ # {https://adcenter.microsoft.com/v7}AddBehavioralBidsRequest
2638
+ # adGroupId - SOAP::SOAPLong
2639
+ # behavioralBids - ArrayOfBehavioralBid
2640
+ class AddBehavioralBidsRequest
2641
+ attr_accessor :adGroupId
2642
+ attr_accessor :behavioralBids
2643
+
2644
+ def initialize(adGroupId = nil, behavioralBids = nil)
2645
+ @adGroupId = adGroupId
2646
+ @behavioralBids = behavioralBids
2647
+ end
2648
+ end
2649
+
2650
+ # {https://adcenter.microsoft.com/v7}AddBehavioralBidsResponse
2651
+ # behavioralBidIds - ArrayOflong
2652
+ class AddBehavioralBidsResponse
2653
+ attr_accessor :behavioralBidIds
2654
+
2655
+ def initialize(behavioralBidIds = nil)
2656
+ @behavioralBidIds = behavioralBidIds
2657
+ end
2658
+ end
2659
+
2660
+ # {https://adcenter.microsoft.com/v7}DeleteBehavioralBidsRequest
2661
+ # adGroupId - SOAP::SOAPLong
2662
+ # behavioralBidIds - ArrayOflong
2663
+ class DeleteBehavioralBidsRequest
2664
+ attr_accessor :adGroupId
2665
+ attr_accessor :behavioralBidIds
2666
+
2667
+ def initialize(adGroupId = nil, behavioralBidIds = nil)
2668
+ @adGroupId = adGroupId
2669
+ @behavioralBidIds = behavioralBidIds
2670
+ end
2671
+ end
2672
+
2673
+ # {https://adcenter.microsoft.com/v7}DeleteBehavioralBidsResponse
2674
+ class DeleteBehavioralBidsResponse
2675
+ def initialize
2676
+ end
2677
+ end
2678
+
2679
+ # {https://adcenter.microsoft.com/v7}GetBehavioralBidsByIdsRequest
2680
+ # adGroupId - SOAP::SOAPLong
2681
+ # behavioralBidIds - ArrayOflong
2682
+ class GetBehavioralBidsByIdsRequest
2683
+ attr_accessor :adGroupId
2684
+ attr_accessor :behavioralBidIds
2685
+
2686
+ def initialize(adGroupId = nil, behavioralBidIds = nil)
2687
+ @adGroupId = adGroupId
2688
+ @behavioralBidIds = behavioralBidIds
2689
+ end
2690
+ end
2691
+
2692
+ # {https://adcenter.microsoft.com/v7}GetBehavioralBidsByIdsResponse
2693
+ # behavioralBids - ArrayOfBehavioralBid
2694
+ class GetBehavioralBidsByIdsResponse
2695
+ attr_accessor :behavioralBids
2696
+
2697
+ def initialize(behavioralBids = nil)
2698
+ @behavioralBids = behavioralBids
2699
+ end
2700
+ end
2701
+
2702
+ # {https://adcenter.microsoft.com/v7}GetBehavioralBidsByAdGroupIdRequest
2703
+ # adGroupId - SOAP::SOAPLong
2704
+ class GetBehavioralBidsByAdGroupIdRequest
2705
+ attr_accessor :adGroupId
2706
+
2707
+ def initialize(adGroupId = nil)
2708
+ @adGroupId = adGroupId
2709
+ end
2710
+ end
2711
+
2712
+ # {https://adcenter.microsoft.com/v7}GetBehavioralBidsByAdGroupIdResponse
2713
+ # behavioralBids - ArrayOfBehavioralBid
2714
+ class GetBehavioralBidsByAdGroupIdResponse
2715
+ attr_accessor :behavioralBids
2716
+
2717
+ def initialize(behavioralBids = nil)
2718
+ @behavioralBids = behavioralBids
2719
+ end
2720
+ end
2721
+
2722
+ # {https://adcenter.microsoft.com/v7}PauseBehavioralBidsRequest
2723
+ # adGroupId - SOAP::SOAPLong
2724
+ # behavioralBidIds - ArrayOflong
2725
+ class PauseBehavioralBidsRequest
2726
+ attr_accessor :adGroupId
2727
+ attr_accessor :behavioralBidIds
2728
+
2729
+ def initialize(adGroupId = nil, behavioralBidIds = nil)
2730
+ @adGroupId = adGroupId
2731
+ @behavioralBidIds = behavioralBidIds
2732
+ end
2733
+ end
2734
+
2735
+ # {https://adcenter.microsoft.com/v7}PauseBehavioralBidsResponse
2736
+ class PauseBehavioralBidsResponse
2737
+ def initialize
2738
+ end
2739
+ end
2740
+
2741
+ # {https://adcenter.microsoft.com/v7}ResumeBehavioralBidsRequest
2742
+ # adGroupId - SOAP::SOAPLong
2743
+ # behavioralBidIds - ArrayOflong
2744
+ class ResumeBehavioralBidsRequest
2745
+ attr_accessor :adGroupId
2746
+ attr_accessor :behavioralBidIds
2747
+
2748
+ def initialize(adGroupId = nil, behavioralBidIds = nil)
2749
+ @adGroupId = adGroupId
2750
+ @behavioralBidIds = behavioralBidIds
2751
+ end
2752
+ end
2753
+
2754
+ # {https://adcenter.microsoft.com/v7}ResumeBehavioralBidsResponse
2755
+ class ResumeBehavioralBidsResponse
2756
+ def initialize
2757
+ end
2758
+ end
2759
+
2760
+ # {https://adcenter.microsoft.com/v7}AddCampaignsRequest
2761
+ # accountId - SOAP::SOAPLong
2762
+ # campaigns - ArrayOfCampaign
2763
+ class AddCampaignsRequest
2764
+ attr_accessor :accountId
2765
+ attr_accessor :campaigns
2766
+
2767
+ def initialize(accountId = nil, campaigns = nil)
2768
+ @accountId = accountId
2769
+ @campaigns = campaigns
2770
+ end
2771
+ end
2772
+
2773
+ # {https://adcenter.microsoft.com/v7}AddCampaignsResponse
2774
+ # campaignIds - ArrayOflong
2775
+ class AddCampaignsResponse
2776
+ attr_accessor :campaignIds
2777
+
2778
+ def initialize(campaignIds = nil)
2779
+ @campaignIds = campaignIds
2780
+ end
2781
+ end
2782
+
2783
+ # {https://adcenter.microsoft.com/v7}GetCampaignsByAccountIdRequest
2784
+ # accountId - SOAP::SOAPLong
2785
+ class GetCampaignsByAccountIdRequest
2786
+ attr_accessor :accountId
2787
+
2788
+ def initialize(accountId = nil)
2789
+ @accountId = accountId
2790
+ end
2791
+ end
2792
+
2793
+ # {https://adcenter.microsoft.com/v7}GetCampaignsByAccountIdResponse
2794
+ # campaigns - ArrayOfCampaign
2795
+ class GetCampaignsByAccountIdResponse
2796
+ attr_accessor :campaigns
2797
+
2798
+ def initialize(campaigns = nil)
2799
+ @campaigns = campaigns
2800
+ end
2801
+ end
2802
+
2803
+ # {https://adcenter.microsoft.com/v7}GetCampaignsByIdsRequest
2804
+ # accountId - SOAP::SOAPLong
2805
+ # campaignIds - ArrayOflong
2806
+ class GetCampaignsByIdsRequest
2807
+ attr_accessor :accountId
2808
+ attr_accessor :campaignIds
2809
+
2810
+ def initialize(accountId = nil, campaignIds = nil)
2811
+ @accountId = accountId
2812
+ @campaignIds = campaignIds
2813
+ end
2814
+ end
2815
+
2816
+ # {https://adcenter.microsoft.com/v7}GetCampaignsByIdsResponse
2817
+ # campaigns - ArrayOfCampaign
2818
+ class GetCampaignsByIdsResponse
2819
+ attr_accessor :campaigns
2820
+
2821
+ def initialize(campaigns = nil)
2822
+ @campaigns = campaigns
2823
+ end
2824
+ end
2825
+
2826
+ # {https://adcenter.microsoft.com/v7}PauseCampaignsRequest
2827
+ # accountId - SOAP::SOAPLong
2828
+ # campaignIds - ArrayOflong
2829
+ class PauseCampaignsRequest
2830
+ attr_accessor :accountId
2831
+ attr_accessor :campaignIds
2832
+
2833
+ def initialize(accountId = nil, campaignIds = nil)
2834
+ @accountId = accountId
2835
+ @campaignIds = campaignIds
2836
+ end
2837
+ end
2838
+
2839
+ # {https://adcenter.microsoft.com/v7}PauseCampaignsResponse
2840
+ class PauseCampaignsResponse
2841
+ def initialize
2842
+ end
2843
+ end
2844
+
2845
+ # {https://adcenter.microsoft.com/v7}ResumeCampaignsRequest
2846
+ # accountId - SOAP::SOAPLong
2847
+ # campaignIds - ArrayOflong
2848
+ class ResumeCampaignsRequest
2849
+ attr_accessor :accountId
2850
+ attr_accessor :campaignIds
2851
+
2852
+ def initialize(accountId = nil, campaignIds = nil)
2853
+ @accountId = accountId
2854
+ @campaignIds = campaignIds
2855
+ end
2856
+ end
2857
+
2858
+ # {https://adcenter.microsoft.com/v7}ResumeCampaignsResponse
2859
+ class ResumeCampaignsResponse
2860
+ def initialize
2861
+ end
2862
+ end
2863
+
2864
+ # {https://adcenter.microsoft.com/v7}DeleteCampaignsRequest
2865
+ # accountId - SOAP::SOAPLong
2866
+ # campaignIds - ArrayOflong
2867
+ class DeleteCampaignsRequest
2868
+ attr_accessor :accountId
2869
+ attr_accessor :campaignIds
2870
+
2871
+ def initialize(accountId = nil, campaignIds = nil)
2872
+ @accountId = accountId
2873
+ @campaignIds = campaignIds
2874
+ end
2875
+ end
2876
+
2877
+ # {https://adcenter.microsoft.com/v7}DeleteCampaignsResponse
2878
+ class DeleteCampaignsResponse
2879
+ def initialize
2880
+ end
2881
+ end
2882
+
2883
+ # {https://adcenter.microsoft.com/v7}UpdateCampaignsRequest
2884
+ # accountId - SOAP::SOAPLong
2885
+ # campaigns - ArrayOfCampaign
2886
+ class UpdateCampaignsRequest
2887
+ attr_accessor :accountId
2888
+ attr_accessor :campaigns
2889
+
2890
+ def initialize(accountId = nil, campaigns = nil)
2891
+ @accountId = accountId
2892
+ @campaigns = campaigns
2893
+ end
2894
+ end
2895
+
2896
+ # {https://adcenter.microsoft.com/v7}UpdateCampaignsResponse
2897
+ class UpdateCampaignsResponse
2898
+ def initialize
2899
+ end
2900
+ end
2901
+
2902
+ # {https://adcenter.microsoft.com/v7}GetCampaignsInfoByAccountIdRequest
2903
+ # accountId - SOAP::SOAPLong
2904
+ class GetCampaignsInfoByAccountIdRequest
2905
+ attr_accessor :accountId
2906
+
2907
+ def initialize(accountId = nil)
2908
+ @accountId = accountId
2909
+ end
2910
+ end
2911
+
2912
+ # {https://adcenter.microsoft.com/v7}GetCampaignsInfoByAccountIdResponse
2913
+ # campaignsInfo - ArrayOfCampaignInfo
2914
+ class GetCampaignsInfoByAccountIdResponse
2915
+ attr_accessor :campaignsInfo
2916
+
2917
+ def initialize(campaignsInfo = nil)
2918
+ @campaignsInfo = campaignsInfo
2919
+ end
2920
+ end
2921
+
2922
+ # {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByCampaignIdsRequest
2923
+ # accountId - SOAP::SOAPLong
2924
+ # campaignIds - ArrayOflong
2925
+ class GetNegativeKeywordsByCampaignIdsRequest
2926
+ attr_accessor :accountId
2927
+ attr_accessor :campaignIds
2928
+
2929
+ def initialize(accountId = nil, campaignIds = nil)
2930
+ @accountId = accountId
2931
+ @campaignIds = campaignIds
2932
+ end
2933
+ end
2934
+
2935
+ # {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByCampaignIdsResponse
2936
+ # campaignNegativeKeywords - ArrayOfCampaignNegativeKeywords
2937
+ class GetNegativeKeywordsByCampaignIdsResponse
2938
+ attr_accessor :campaignNegativeKeywords
2939
+
2940
+ def initialize(campaignNegativeKeywords = nil)
2941
+ @campaignNegativeKeywords = campaignNegativeKeywords
2942
+ end
2943
+ end
2944
+
2945
+ # {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToCampaignsRequest
2946
+ # accountId - SOAP::SOAPLong
2947
+ # campaignNegativeKeywords - ArrayOfCampaignNegativeKeywords
2948
+ class SetNegativeKeywordsToCampaignsRequest
2949
+ attr_accessor :accountId
2950
+ attr_accessor :campaignNegativeKeywords
2951
+
2952
+ def initialize(accountId = nil, campaignNegativeKeywords = nil)
2953
+ @accountId = accountId
2954
+ @campaignNegativeKeywords = campaignNegativeKeywords
2955
+ end
2956
+ end
2957
+
2958
+ # {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToCampaignsResponse
2959
+ class SetNegativeKeywordsToCampaignsResponse
2960
+ def initialize
2961
+ end
2962
+ end
2963
+
2964
+ # {https://adcenter.microsoft.com/v7}AddAdGroupsRequest
2965
+ # campaignId - SOAP::SOAPLong
2966
+ # adGroups - ArrayOfAdGroup
2967
+ class AddAdGroupsRequest
2968
+ attr_accessor :campaignId
2969
+ attr_accessor :adGroups
2970
+
2971
+ def initialize(campaignId = nil, adGroups = nil)
2972
+ @campaignId = campaignId
2973
+ @adGroups = adGroups
2974
+ end
2975
+ end
2976
+
2977
+ # {https://adcenter.microsoft.com/v7}AddAdGroupsResponse
2978
+ # adGroupIds - ArrayOflong
2979
+ class AddAdGroupsResponse
2980
+ attr_accessor :adGroupIds
2981
+
2982
+ def initialize(adGroupIds = nil)
2983
+ @adGroupIds = adGroupIds
2984
+ end
2985
+ end
2986
+
2987
+ # {https://adcenter.microsoft.com/v7}DeleteAdGroupsRequest
2988
+ # campaignId - SOAP::SOAPLong
2989
+ # adGroupIds - ArrayOflong
2990
+ class DeleteAdGroupsRequest
2991
+ attr_accessor :campaignId
2992
+ attr_accessor :adGroupIds
2993
+
2994
+ def initialize(campaignId = nil, adGroupIds = nil)
2995
+ @campaignId = campaignId
2996
+ @adGroupIds = adGroupIds
2997
+ end
2998
+ end
2999
+
3000
+ # {https://adcenter.microsoft.com/v7}DeleteAdGroupsResponse
3001
+ class DeleteAdGroupsResponse
3002
+ def initialize
3003
+ end
3004
+ end
3005
+
3006
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsByIdsRequest
3007
+ # campaignId - SOAP::SOAPLong
3008
+ # adGroupIds - ArrayOflong
3009
+ class GetAdGroupsByIdsRequest
3010
+ attr_accessor :campaignId
3011
+ attr_accessor :adGroupIds
3012
+
3013
+ def initialize(campaignId = nil, adGroupIds = nil)
3014
+ @campaignId = campaignId
3015
+ @adGroupIds = adGroupIds
3016
+ end
3017
+ end
3018
+
3019
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsByIdsResponse
3020
+ # adGroups - ArrayOfAdGroup
3021
+ class GetAdGroupsByIdsResponse
3022
+ attr_accessor :adGroups
3023
+
3024
+ def initialize(adGroups = nil)
3025
+ @adGroups = adGroups
3026
+ end
3027
+ end
3028
+
3029
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsByCampaignIdRequest
3030
+ # campaignId - SOAP::SOAPLong
3031
+ class GetAdGroupsByCampaignIdRequest
3032
+ attr_accessor :campaignId
3033
+
3034
+ def initialize(campaignId = nil)
3035
+ @campaignId = campaignId
3036
+ end
3037
+ end
3038
+
3039
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsByCampaignIdResponse
3040
+ # adGroups - ArrayOfAdGroup
3041
+ class GetAdGroupsByCampaignIdResponse
3042
+ attr_accessor :adGroups
3043
+
3044
+ def initialize(adGroups = nil)
3045
+ @adGroups = adGroups
3046
+ end
3047
+ end
3048
+
3049
+ # {https://adcenter.microsoft.com/v7}PauseAdGroupsRequest
3050
+ # campaignId - SOAP::SOAPLong
3051
+ # adGroupIds - ArrayOflong
3052
+ class PauseAdGroupsRequest
3053
+ attr_accessor :campaignId
3054
+ attr_accessor :adGroupIds
3055
+
3056
+ def initialize(campaignId = nil, adGroupIds = nil)
3057
+ @campaignId = campaignId
3058
+ @adGroupIds = adGroupIds
3059
+ end
3060
+ end
3061
+
3062
+ # {https://adcenter.microsoft.com/v7}PauseAdGroupsResponse
3063
+ class PauseAdGroupsResponse
3064
+ def initialize
3065
+ end
3066
+ end
3067
+
3068
+ # {https://adcenter.microsoft.com/v7}ResumeAdGroupsRequest
3069
+ # campaignId - SOAP::SOAPLong
3070
+ # adGroupIds - ArrayOflong
3071
+ class ResumeAdGroupsRequest
3072
+ attr_accessor :campaignId
3073
+ attr_accessor :adGroupIds
3074
+
3075
+ def initialize(campaignId = nil, adGroupIds = nil)
3076
+ @campaignId = campaignId
3077
+ @adGroupIds = adGroupIds
3078
+ end
3079
+ end
3080
+
3081
+ # {https://adcenter.microsoft.com/v7}ResumeAdGroupsResponse
3082
+ class ResumeAdGroupsResponse
3083
+ def initialize
3084
+ end
3085
+ end
3086
+
3087
+ # {https://adcenter.microsoft.com/v7}SubmitAdGroupForApprovalRequest
3088
+ # adGroupId - SOAP::SOAPLong
3089
+ class SubmitAdGroupForApprovalRequest
3090
+ attr_accessor :adGroupId
3091
+
3092
+ def initialize(adGroupId = nil)
3093
+ @adGroupId = adGroupId
3094
+ end
3095
+ end
3096
+
3097
+ # {https://adcenter.microsoft.com/v7}SubmitAdGroupForApprovalResponse
3098
+ class SubmitAdGroupForApprovalResponse
3099
+ def initialize
3100
+ end
3101
+ end
3102
+
3103
+ # {https://adcenter.microsoft.com/v7}UpdateAdGroupsRequest
3104
+ # campaignId - SOAP::SOAPLong
3105
+ # adGroups - ArrayOfAdGroup
3106
+ class UpdateAdGroupsRequest
3107
+ attr_accessor :campaignId
3108
+ attr_accessor :adGroups
3109
+
3110
+ def initialize(campaignId = nil, adGroups = nil)
3111
+ @campaignId = campaignId
3112
+ @adGroups = adGroups
3113
+ end
3114
+ end
3115
+
3116
+ # {https://adcenter.microsoft.com/v7}UpdateAdGroupsResponse
3117
+ class UpdateAdGroupsResponse
3118
+ def initialize
3119
+ end
3120
+ end
3121
+
3122
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsInfoByCampaignIdRequest
3123
+ # campaignId - SOAP::SOAPLong
3124
+ class GetAdGroupsInfoByCampaignIdRequest
3125
+ attr_accessor :campaignId
3126
+
3127
+ def initialize(campaignId = nil)
3128
+ @campaignId = campaignId
3129
+ end
3130
+ end
3131
+
3132
+ # {https://adcenter.microsoft.com/v7}GetAdGroupsInfoByCampaignIdResponse
3133
+ # adGroupsInfo - ArrayOfAdGroupInfo
3134
+ class GetAdGroupsInfoByCampaignIdResponse
3135
+ attr_accessor :adGroupsInfo
3136
+
3137
+ def initialize(adGroupsInfo = nil)
3138
+ @adGroupsInfo = adGroupsInfo
3139
+ end
3140
+ end
3141
+
3142
+ # {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByAdGroupIdsRequest
3143
+ # campaignId - SOAP::SOAPLong
3144
+ # adGroupIds - ArrayOflong
3145
+ class GetNegativeKeywordsByAdGroupIdsRequest
3146
+ attr_accessor :campaignId
3147
+ attr_accessor :adGroupIds
3148
+
3149
+ def initialize(campaignId = nil, adGroupIds = nil)
3150
+ @campaignId = campaignId
3151
+ @adGroupIds = adGroupIds
3152
+ end
3153
+ end
3154
+
3155
+ # {https://adcenter.microsoft.com/v7}GetNegativeKeywordsByAdGroupIdsResponse
3156
+ # adGroupNegativeKeywords - ArrayOfAdGroupNegativeKeywords
3157
+ class GetNegativeKeywordsByAdGroupIdsResponse
3158
+ attr_accessor :adGroupNegativeKeywords
3159
+
3160
+ def initialize(adGroupNegativeKeywords = nil)
3161
+ @adGroupNegativeKeywords = adGroupNegativeKeywords
3162
+ end
3163
+ end
3164
+
3165
+ # {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToAdGroupsRequest
3166
+ # campaignId - SOAP::SOAPLong
3167
+ # adGroupNegativeKeywords - ArrayOfAdGroupNegativeKeywords
3168
+ class SetNegativeKeywordsToAdGroupsRequest
3169
+ attr_accessor :campaignId
3170
+ attr_accessor :adGroupNegativeKeywords
3171
+
3172
+ def initialize(campaignId = nil, adGroupNegativeKeywords = nil)
3173
+ @campaignId = campaignId
3174
+ @adGroupNegativeKeywords = adGroupNegativeKeywords
3175
+ end
3176
+ end
3177
+
3178
+ # {https://adcenter.microsoft.com/v7}SetNegativeKeywordsToAdGroupsResponse
3179
+ class SetNegativeKeywordsToAdGroupsResponse
3180
+ def initialize
3181
+ end
3182
+ end
3183
+
3184
+ # {https://adcenter.microsoft.com/v7}AddTargetRequest
3185
+ # adGroupId - SOAP::SOAPLong
3186
+ # target - Target
3187
+ class AddTargetRequest
3188
+ attr_accessor :adGroupId
3189
+ attr_accessor :target
3190
+
3191
+ def initialize(adGroupId = nil, target = nil)
3192
+ @adGroupId = adGroupId
3193
+ @target = target
3194
+ end
3195
+ end
3196
+
3197
+ # {https://adcenter.microsoft.com/v7}AddTargetResponse
3198
+ # targetId - SOAP::SOAPLong
3199
+ class AddTargetResponse
3200
+ attr_accessor :targetId
3201
+
3202
+ def initialize(targetId = nil)
3203
+ @targetId = targetId
3204
+ end
3205
+ end
3206
+
3207
+ # {https://adcenter.microsoft.com/v7}DeleteTargetRequest
3208
+ # adGroupId - SOAP::SOAPLong
3209
+ class DeleteTargetRequest
3210
+ attr_accessor :adGroupId
3211
+
3212
+ def initialize(adGroupId = nil)
3213
+ @adGroupId = adGroupId
3214
+ end
3215
+ end
3216
+
3217
+ # {https://adcenter.microsoft.com/v7}DeleteTargetResponse
3218
+ class DeleteTargetResponse
3219
+ def initialize
3220
+ end
3221
+ end
3222
+
3223
+ # {https://adcenter.microsoft.com/v7}GetTargetByAdGroupIdRequest
3224
+ # adGroupId - SOAP::SOAPLong
3225
+ class GetTargetByAdGroupIdRequest
3226
+ attr_accessor :adGroupId
3227
+
3228
+ def initialize(adGroupId = nil)
3229
+ @adGroupId = adGroupId
3230
+ end
3231
+ end
3232
+
3233
+ # {https://adcenter.microsoft.com/v7}GetTargetByAdGroupIdResponse
3234
+ # target - Target
3235
+ class GetTargetByAdGroupIdResponse
3236
+ attr_accessor :target
3237
+
3238
+ def initialize(target = nil)
3239
+ @target = target
3240
+ end
3241
+ end
3242
+
3243
+ # {https://adcenter.microsoft.com/v7}UpdateTargetRequest
3244
+ # adGroupId - SOAP::SOAPLong
3245
+ # target - Target
3246
+ class UpdateTargetRequest
3247
+ attr_accessor :adGroupId
3248
+ attr_accessor :target
3249
+
3250
+ def initialize(adGroupId = nil, target = nil)
3251
+ @adGroupId = adGroupId
3252
+ @target = target
3253
+ end
3254
+ end
3255
+
3256
+ # {https://adcenter.microsoft.com/v7}UpdateTargetResponse
3257
+ class UpdateTargetResponse
3258
+ def initialize
3259
+ end
3260
+ end
3261
+
3262
+ # {https://adcenter.microsoft.com/v7}AddTargetsToLibraryRequest
3263
+ # targets - ArrayOfTarget
3264
+ class AddTargetsToLibraryRequest
3265
+ attr_accessor :targets
3266
+
3267
+ def initialize(targets = nil)
3268
+ @targets = targets
3269
+ end
3270
+ end
3271
+
3272
+ # {https://adcenter.microsoft.com/v7}AddTargetsToLibraryResponse
3273
+ # targetIds - ArrayOflong
3274
+ class AddTargetsToLibraryResponse
3275
+ attr_accessor :targetIds
3276
+
3277
+ def initialize(targetIds = nil)
3278
+ @targetIds = targetIds
3279
+ end
3280
+ end
3281
+
3282
+ # {https://adcenter.microsoft.com/v7}UpdateTargetsInLibraryRequest
3283
+ # targets - ArrayOfTarget
3284
+ class UpdateTargetsInLibraryRequest
3285
+ attr_accessor :targets
3286
+
3287
+ def initialize(targets = nil)
3288
+ @targets = targets
3289
+ end
3290
+ end
3291
+
3292
+ # {https://adcenter.microsoft.com/v7}UpdateTargetsInLibraryResponse
3293
+ class UpdateTargetsInLibraryResponse
3294
+ def initialize
3295
+ end
3296
+ end
3297
+
3298
+ # {https://adcenter.microsoft.com/v7}DeleteTargetsFromLibraryRequest
3299
+ # targetIds - ArrayOflong
3300
+ class DeleteTargetsFromLibraryRequest
3301
+ attr_accessor :targetIds
3302
+
3303
+ def initialize(targetIds = nil)
3304
+ @targetIds = targetIds
3305
+ end
3306
+ end
3307
+
3308
+ # {https://adcenter.microsoft.com/v7}DeleteTargetsFromLibraryResponse
3309
+ class DeleteTargetsFromLibraryResponse
3310
+ def initialize
3311
+ end
3312
+ end
3313
+
3314
+ # {https://adcenter.microsoft.com/v7}GetTargetsInfoFromLibraryRequest
3315
+ class GetTargetsInfoFromLibraryRequest
3316
+ def initialize
3317
+ end
3318
+ end
3319
+
3320
+ # {https://adcenter.microsoft.com/v7}GetTargetsInfoFromLibraryResponse
3321
+ # targetsInfo - ArrayOfTargetInfo
3322
+ class GetTargetsInfoFromLibraryResponse
3323
+ attr_accessor :targetsInfo
3324
+
3325
+ def initialize(targetsInfo = nil)
3326
+ @targetsInfo = targetsInfo
3327
+ end
3328
+ end
3329
+
3330
+ # {https://adcenter.microsoft.com/v7}GetTargetsByIdsRequest
3331
+ # targetIds - ArrayOflong
3332
+ class GetTargetsByIdsRequest
3333
+ attr_accessor :targetIds
3334
+
3335
+ def initialize(targetIds = nil)
3336
+ @targetIds = targetIds
3337
+ end
3338
+ end
3339
+
3340
+ # {https://adcenter.microsoft.com/v7}GetTargetsByIdsResponse
3341
+ # targets - ArrayOfTarget
3342
+ class GetTargetsByIdsResponse
3343
+ attr_accessor :targets
3344
+
3345
+ def initialize(targets = nil)
3346
+ @targets = targets
3347
+ end
3348
+ end
3349
+
3350
+ # {https://adcenter.microsoft.com/v7}SetTargetToAdGroupRequest
3351
+ # adGroupId - SOAP::SOAPLong
3352
+ # targetId - SOAP::SOAPLong
3353
+ class SetTargetToAdGroupRequest
3354
+ attr_accessor :adGroupId
3355
+ attr_accessor :targetId
3356
+
3357
+ def initialize(adGroupId = nil, targetId = nil)
3358
+ @adGroupId = adGroupId
3359
+ @targetId = targetId
3360
+ end
3361
+ end
3362
+
3363
+ # {https://adcenter.microsoft.com/v7}SetTargetToAdGroupResponse
3364
+ class SetTargetToAdGroupResponse
3365
+ def initialize
3366
+ end
3367
+ end
3368
+
3369
+ # {https://adcenter.microsoft.com/v7}DeleteTargetFromAdGroupRequest
3370
+ # adGroupId - SOAP::SOAPLong
3371
+ class DeleteTargetFromAdGroupRequest
3372
+ attr_accessor :adGroupId
3373
+
3374
+ def initialize(adGroupId = nil)
3375
+ @adGroupId = adGroupId
3376
+ end
3377
+ end
3378
+
3379
+ # {https://adcenter.microsoft.com/v7}DeleteTargetFromAdGroupResponse
3380
+ class DeleteTargetFromAdGroupResponse
3381
+ def initialize
3382
+ end
3383
+ end
3384
+
3385
+ # {https://adcenter.microsoft.com/v7}GetTargetsByAdGroupIdsRequest
3386
+ # adGroupIds - ArrayOflong
3387
+ class GetTargetsByAdGroupIdsRequest
3388
+ attr_accessor :adGroupIds
3389
+
3390
+ def initialize(adGroupIds = nil)
3391
+ @adGroupIds = adGroupIds
3392
+ end
3393
+ end
3394
+
3395
+ # {https://adcenter.microsoft.com/v7}GetTargetsByAdGroupIdsResponse
3396
+ # targets - ArrayOfTarget
3397
+ class GetTargetsByAdGroupIdsResponse
3398
+ attr_accessor :targets
3399
+
3400
+ def initialize(targets = nil)
3401
+ @targets = targets
3402
+ end
3403
+ end
3404
+
3405
+ # {https://adcenter.microsoft.com/v7}SetTargetToCampaignRequest
3406
+ # campaignId - SOAP::SOAPLong
3407
+ # targetId - SOAP::SOAPLong
3408
+ class SetTargetToCampaignRequest
3409
+ attr_accessor :campaignId
3410
+ attr_accessor :targetId
3411
+
3412
+ def initialize(campaignId = nil, targetId = nil)
3413
+ @campaignId = campaignId
3414
+ @targetId = targetId
3415
+ end
3416
+ end
3417
+
3418
+ # {https://adcenter.microsoft.com/v7}SetTargetToCampaignResponse
3419
+ class SetTargetToCampaignResponse
3420
+ def initialize
3421
+ end
3422
+ end
3423
+
3424
+ # {https://adcenter.microsoft.com/v7}DeleteTargetFromCampaignRequest
3425
+ # campaignId - SOAP::SOAPLong
3426
+ class DeleteTargetFromCampaignRequest
3427
+ attr_accessor :campaignId
3428
+
3429
+ def initialize(campaignId = nil)
3430
+ @campaignId = campaignId
3431
+ end
3432
+ end
3433
+
3434
+ # {https://adcenter.microsoft.com/v7}DeleteTargetFromCampaignResponse
3435
+ class DeleteTargetFromCampaignResponse
3436
+ def initialize
3437
+ end
3438
+ end
3439
+
3440
+ # {https://adcenter.microsoft.com/v7}GetTargetsByCampaignIdsRequest
3441
+ # campaignIds - ArrayOflong
3442
+ class GetTargetsByCampaignIdsRequest
3443
+ attr_accessor :campaignIds
3444
+
3445
+ def initialize(campaignIds = nil)
3446
+ @campaignIds = campaignIds
3447
+ end
3448
+ end
3449
+
3450
+ # {https://adcenter.microsoft.com/v7}GetTargetsByCampaignIdsResponse
3451
+ # targets - ArrayOfTarget
3452
+ class GetTargetsByCampaignIdsResponse
3453
+ attr_accessor :targets
3454
+
3455
+ def initialize(targets = nil)
3456
+ @targets = targets
3457
+ end
3458
+ end