Class: Recipient

Inherits:
Object
  • Object
show all
Defined in:
lib/metal/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.



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

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.



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

def customerId
  @customerId
end

#emailAddressObject

Returns the value of attribute emailAddress.



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

def emailAddress
  @emailAddress
end

#emailFormatObject

Returns the value of attribute emailFormat.



85
86
87
# File 'lib/metal/default.rb', line 85

def emailFormat
  @emailFormat
end

#listNameObject

Returns the value of attribute listName.



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

def listName
  @listName
end

#mobileNumberObject

Returns the value of attribute mobileNumber.



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

def mobileNumber
  @mobileNumber
end

#recipientIdObject

Returns the value of attribute recipientId.



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

def recipientId
  @recipientId
end