Class: AdCenterWrapper::Notification
- Inherits:
-
Object
- Object
- AdCenterWrapper::Notification
- Defined in:
- lib/adcenter_wrapper_entities.rb
Overview
http://adcenter.microsoft.com/syncapisNotification abstract
notificationType - AdCenterWrapper::NotificationType
customerId - SOAP::SOAPInt
userLocale - SOAP::SOAPString
recipientEmailAddress - SOAP::SOAPString
notificationDate - SOAP::SOAPDateTime
Direct Known Subclasses
AccountClosedNotification, AccountSignupPaymentReceiptNotification, CreditCardNotification, EditorialRejectionNotification, UnableToChargeCreditCardNotification, UserNotification
Instance Attribute Summary collapse
-
#customerId ⇒ Object
Returns the value of attribute customerId.
-
#notificationDate ⇒ Object
Returns the value of attribute notificationDate.
-
#notificationType ⇒ Object
Returns the value of attribute notificationType.
-
#recipientEmailAddress ⇒ Object
Returns the value of attribute recipientEmailAddress.
-
#userLocale ⇒ Object
Returns the value of attribute userLocale.
Instance Method Summary collapse
-
#initialize(notificationType = nil, customerId = nil, userLocale = nil, recipientEmailAddress = nil, notificationDate = nil) ⇒ Notification
constructor
A new instance of Notification.
Constructor Details
#initialize(notificationType = nil, customerId = nil, userLocale = nil, recipientEmailAddress = nil, notificationDate = nil) ⇒ Notification
Returns a new instance of Notification.
7553 7554 7555 7556 7557 7558 7559 |
# File 'lib/adcenter_wrapper_entities.rb', line 7553 def initialize(notificationType = nil, customerId = nil, userLocale = nil, recipientEmailAddress = nil, notificationDate = nil) @notificationType = notificationType @customerId = customerId @userLocale = userLocale @recipientEmailAddress = recipientEmailAddress @notificationDate = notificationDate end |
Instance Attribute Details
#customerId ⇒ Object
Returns the value of attribute customerId.
7548 7549 7550 |
# File 'lib/adcenter_wrapper_entities.rb', line 7548 def customerId @customerId end |
#notificationDate ⇒ Object
Returns the value of attribute notificationDate.
7551 7552 7553 |
# File 'lib/adcenter_wrapper_entities.rb', line 7551 def notificationDate @notificationDate end |
#notificationType ⇒ Object
Returns the value of attribute notificationType.
7547 7548 7549 |
# File 'lib/adcenter_wrapper_entities.rb', line 7547 def notificationType @notificationType end |
#recipientEmailAddress ⇒ Object
Returns the value of attribute recipientEmailAddress.
7550 7551 7552 |
# File 'lib/adcenter_wrapper_entities.rb', line 7550 def recipientEmailAddress @recipientEmailAddress end |
#userLocale ⇒ Object
Returns the value of attribute userLocale.
7549 7550 7551 |
# File 'lib/adcenter_wrapper_entities.rb', line 7549 def userLocale @userLocale end |