Class: Recipient

Inherits:
Object
  • Object
show all
Defined in:
lib/stub/default.rb

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comRecipient

listName - InteractObject
recipientId - SOAP::SOAPLong
customerId - SOAP::SOAPString
emailAddress - SOAP::SOAPString
mobileNumber - SOAP::SOAPString
emailFormat - EmailFormat

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(listName = nil, recipientId = nil, customerId = nil, emailAddress = nil, mobileNumber = nil, emailFormat = nil) ⇒ Recipient

Returns a new instance of Recipient.



86
87
88
89
90
91
92
93
# File 'lib/stub/default.rb', line 86

def initialize(listName = nil, recipientId = nil, customerId = nil, emailAddress = nil, mobileNumber = nil, emailFormat = nil)
  @listName = listName
  @recipientId = recipientId
  @customerId = customerId
  @emailAddress = emailAddress
  @mobileNumber = mobileNumber
  @emailFormat = emailFormat
end

Instance Attribute Details

#customerIdObject

Returns the value of attribute customerId.



81
82
83
# File 'lib/stub/default.rb', line 81

def customerId
  @customerId
end

#emailAddressObject

Returns the value of attribute emailAddress.



82
83
84
# File 'lib/stub/default.rb', line 82

def emailAddress
  @emailAddress
end

#emailFormatObject

Returns the value of attribute emailFormat.



84
85
86
# File 'lib/stub/default.rb', line 84

def emailFormat
  @emailFormat
end

#listNameObject

Returns the value of attribute listName.



79
80
81
# File 'lib/stub/default.rb', line 79

def listName
  @listName
end

#mobileNumberObject

Returns the value of attribute mobileNumber.



83
84
85
# File 'lib/stub/default.rb', line 83

def mobileNumber
  @mobileNumber
end

#recipientIdObject

Returns the value of attribute recipientId.



80
81
82
# File 'lib/stub/default.rb', line 80

def recipientId
  @recipientId
end