Class: AdCenterWrapper::Notification

Inherits:
Object
  • Object
show all
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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#customerIdObject

Returns the value of attribute customerId.



7548
7549
7550
# File 'lib/adcenter_wrapper_entities.rb', line 7548

def customerId
  @customerId
end

#notificationDateObject

Returns the value of attribute notificationDate.



7551
7552
7553
# File 'lib/adcenter_wrapper_entities.rb', line 7551

def notificationDate
  @notificationDate
end

#notificationTypeObject

Returns the value of attribute notificationType.



7547
7548
7549
# File 'lib/adcenter_wrapper_entities.rb', line 7547

def notificationType
  @notificationType
end

#recipientEmailAddressObject

Returns the value of attribute recipientEmailAddress.



7550
7551
7552
# File 'lib/adcenter_wrapper_entities.rb', line 7550

def recipientEmailAddress
  @recipientEmailAddress
end

#userLocaleObject

Returns the value of attribute userLocale.



7549
7550
7551
# File 'lib/adcenter_wrapper_entities.rb', line 7549

def userLocale
  @userLocale
end