Class: AdCenterWrapper::ExpiredInsertionOrderNotification

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

Overview

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ExpiredInsertionOrderNotification.

[View source]

125
126
127
128
129
130
131
132
# File 'lib/NotificationService.rb', line 125

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

Instance Attribute Details

#accountIdObject

Returns the value of attribute accountId.


121
122
123
# File 'lib/NotificationService.rb', line 121

def accountId
  @accountId
end

#accountNumberObject

Returns the value of attribute accountNumber.


122
123
124
# File 'lib/NotificationService.rb', line 122

def accountNumber
  @accountNumber
end

#billToCustomerNameObject

Returns the value of attribute billToCustomerName.


123
124
125
# File 'lib/NotificationService.rb', line 123

def billToCustomerName
  @billToCustomerName
end

#notificationDateObject

Returns the value of attribute notificationDate.


119
120
121
# File 'lib/NotificationService.rb', line 119

def notificationDate
  @notificationDate
end

#notificationIdObject

Returns the value of attribute notificationId.


118
119
120
# File 'lib/NotificationService.rb', line 118

def notificationId
  @notificationId
end

#notificationTypeObject

Returns the value of attribute notificationType.


120
121
122
# File 'lib/NotificationService.rb', line 120

def notificationType
  @notificationType
end