Class: AdCenterWrapper::CreditCardPendingExpirationNotification

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

Overview

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

notificationId - SOAP::SOAPLong
notificationDate - SOAP::SOAPDateTime
notificationType - (any)
accountId - SOAP::SOAPLong
accountNumber - SOAP::SOAPString
cardType - SOAP::SOAPString
lastFourDigits - SOAP::SOAPString
accountName - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil, cardType = nil, lastFourDigits = nil, accountName = nil) ⇒ CreditCardPendingExpirationNotification

Returns a new instance of CreditCardPendingExpirationNotification.

[View source]

67
68
69
70
71
72
73
74
75
76
# File 'lib/NotificationService.rb', line 67

def initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil, cardType = nil, lastFourDigits = nil, accountName = nil)
  @notificationId = notificationId
  @notificationDate = notificationDate
  @notificationType = notificationType
  @accountId = accountId
  @accountNumber = accountNumber
  @cardType = cardType
  @lastFourDigits = lastFourDigits
  @accountName = accountName
end

Instance Attribute Details

#accountIdObject

Returns the value of attribute accountId.


61
62
63
# File 'lib/NotificationService.rb', line 61

def accountId
  @accountId
end

#accountNameObject

Returns the value of attribute accountName.


65
66
67
# File 'lib/NotificationService.rb', line 65

def accountName
  @accountName
end

#accountNumberObject

Returns the value of attribute accountNumber.


62
63
64
# File 'lib/NotificationService.rb', line 62

def accountNumber
  @accountNumber
end

#cardTypeObject

Returns the value of attribute cardType.


63
64
65
# File 'lib/NotificationService.rb', line 63

def cardType
  @cardType
end

#lastFourDigitsObject

Returns the value of attribute lastFourDigits.


64
65
66
# File 'lib/NotificationService.rb', line 64

def lastFourDigits
  @lastFourDigits
end

#notificationDateObject

Returns the value of attribute notificationDate.


59
60
61
# File 'lib/NotificationService.rb', line 59

def notificationDate
  @notificationDate
end

#notificationIdObject

Returns the value of attribute notificationId.


58
59
60
# File 'lib/NotificationService.rb', line 58

def notificationId
  @notificationId
end

#notificationTypeObject

Returns the value of attribute notificationType.


60
61
62
# File 'lib/NotificationService.rb', line 60

def notificationType
  @notificationType
end