Class: AdCenterWrapper::AccountNotification
- Inherits:
-
Notification
- Object
- Notification
- AdCenterWrapper::AccountNotification
- Defined in:
- lib/NotificationService.rb
Overview
https://adcenter.microsoft.com/api/notifications/EntitiesAccountNotification
notificationId - SOAP::SOAPLong
notificationDate - SOAP::SOAPDateTime
notificationType - (any)
accountId - SOAP::SOAPLong
accountNumber - SOAP::SOAPString
Direct Known Subclasses
BudgetDepletedNotification, CreditCardPendingExpirationNotification, EditorialRejectionNotification, ExpiredCreditCardNotification, ExpiredInsertionOrderNotification, LowBudgetBalanceNotification
Instance Attribute Summary collapse
-
#accountId ⇒ Object
Returns the value of attribute accountId.
-
#accountNumber ⇒ Object
Returns the value of attribute accountNumber.
-
#notificationDate ⇒ Object
Returns the value of attribute notificationDate.
-
#notificationId ⇒ Object
Returns the value of attribute notificationId.
-
#notificationType ⇒ Object
Returns the value of attribute notificationType.
Instance Method Summary collapse
-
#initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil) ⇒ AccountNotification
constructor
A new instance of AccountNotification.
Constructor Details
permalink #initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil) ⇒ AccountNotification
Returns a new instance of AccountNotification.
39 40 41 42 43 44 45 |
# File 'lib/NotificationService.rb', line 39 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
permalink #accountId ⇒ Object
Returns the value of attribute accountId.
36 37 38 |
# File 'lib/NotificationService.rb', line 36 def accountId @accountId end |
permalink #accountNumber ⇒ Object
Returns the value of attribute accountNumber.
37 38 39 |
# File 'lib/NotificationService.rb', line 37 def accountNumber @accountNumber end |
permalink #notificationDate ⇒ Object
Returns the value of attribute notificationDate.
34 35 36 |
# File 'lib/NotificationService.rb', line 34 def notificationDate @notificationDate end |
permalink #notificationId ⇒ Object
Returns the value of attribute notificationId.
33 34 35 |
# File 'lib/NotificationService.rb', line 33 def notificationId @notificationId end |
permalink #notificationType ⇒ Object
Returns the value of attribute notificationType.
35 36 37 |
# File 'lib/NotificationService.rb', line 35 def notificationType @notificationType end |