Class: AdCenterWrapper::GetArchivedNotificationsRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/NotificationService.rb

Overview

https://adcenter.microsoft.com/api/notificationsGetArchivedNotificationsRequest

notificationTypes - (any)
topN - SOAP::SOAPInt
startDate - SOAP::SOAPDateTime
endDate - SOAP::SOAPDateTime

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notificationTypes = nil, topN = nil, startDate = nil, endDate = nil) ⇒ GetArchivedNotificationsRequest

Returns a new instance of GetArchivedNotificationsRequest.

[View source]

398
399
400
401
402
403
# File 'lib/NotificationService.rb', line 398

def initialize(notificationTypes = nil, topN = nil, startDate = nil, endDate = nil)
  @notificationTypes = notificationTypes
  @topN = topN
  @startDate = startDate
  @endDate = endDate
end

Instance Attribute Details

#endDateObject

Returns the value of attribute endDate.


396
397
398
# File 'lib/NotificationService.rb', line 396

def endDate
  @endDate
end

#notificationTypesObject

Returns the value of attribute notificationTypes.


393
394
395
# File 'lib/NotificationService.rb', line 393

def notificationTypes
  @notificationTypes
end

#startDateObject

Returns the value of attribute startDate.


395
396
397
# File 'lib/NotificationService.rb', line 395

def startDate
  @startDate
end

#topNObject

Returns the value of attribute topN.


394
395
396
# File 'lib/NotificationService.rb', line 394

def topN
  @topN
end