Class: AdCenterWrapper::Notification
- Inherits:
-
Object
- Object
- AdCenterWrapper::Notification
- Defined in:
- lib/NotificationService.rb
Overview
https://adcenter.microsoft.com/api/notifications/EntitiesNotification
notificationId - SOAP::SOAPLong
notificationDate - SOAP::SOAPDateTime
notificationType - (any)
Direct Known Subclasses
Instance Attribute Summary collapse
-
#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) ⇒ Notification
constructor
A new instance of Notification.
Constructor Details
permalink #initialize(notificationId = nil, notificationDate = nil, notificationType = nil) ⇒ Notification
Returns a new instance of Notification.
19 20 21 22 23 |
# File 'lib/NotificationService.rb', line 19 def initialize(notificationId = nil, notificationDate = nil, notificationType = nil) @notificationId = notificationId @notificationDate = notificationDate @notificationType = notificationType end |
Instance Attribute Details
permalink #notificationDate ⇒ Object
Returns the value of attribute notificationDate.
16 17 18 |
# File 'lib/NotificationService.rb', line 16 def notificationDate @notificationDate end |
permalink #notificationId ⇒ Object
Returns the value of attribute notificationId.
15 16 17 |
# File 'lib/NotificationService.rb', line 15 def notificationId @notificationId end |
permalink #notificationType ⇒ Object
Returns the value of attribute notificationType.
17 18 19 |
# File 'lib/NotificationService.rb', line 17 def notificationType @notificationType end |