Class: AdCenterWrapper::EditorialRejectionNotification

Inherits:
AccountNotification show all
Defined in:
lib/NotificationService.rb

Overview

https://adcenter.microsoft.com/api/notifications/EntitiesEditorialRejectionNotification

notificationId - SOAP::SOAPLong
notificationDate - SOAP::SOAPDateTime
notificationType - (any)
accountId - SOAP::SOAPLong
accountNumber - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil) ⇒ EditorialRejectionNotification

Returns a new instance of EditorialRejectionNotification.

[View source]

176
177
178
179
180
181
182
# File 'lib/NotificationService.rb', line 176

def initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil)
  @notificationId = notificationId
  @notificationDate = notificationDate
  @notificationType = notificationType
  @accountId = accountId
  @accountNumber = accountNumber
end

Instance Attribute Details

#accountIdObject

Returns the value of attribute accountId.


173
174
175
# File 'lib/NotificationService.rb', line 173

def accountId
  @accountId
end

#accountNumberObject

Returns the value of attribute accountNumber.


174
175
176
# File 'lib/NotificationService.rb', line 174

def accountNumber
  @accountNumber
end

#notificationDateObject

Returns the value of attribute notificationDate.


171
172
173
# File 'lib/NotificationService.rb', line 171

def notificationDate
  @notificationDate
end

#notificationIdObject

Returns the value of attribute notificationId.


170
171
172
# File 'lib/NotificationService.rb', line 170

def notificationId
  @notificationId
end

#notificationTypeObject

Returns the value of attribute notificationType.


172
173
174
# File 'lib/NotificationService.rb', line 172

def notificationType
  @notificationType
end