Class: Smartcall::Soap::SendWAPLink

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

Overview

/sendWAPLink

Constant Summary collapse

@@schema_type =
"sendWAPLink"
@@schema_ns =
"http://tempuri.org/"
@@schema_qualified =
"true"
@@schema_element =
[["token", "SOAP::SOAPString"], ["recipient", "SOAP::SOAPString"], ["href", "SOAP::SOAPString"], ["text", "SOAP::SOAPString"], ["reference", "SOAP::SOAPString"], ["campaignid", "SOAP::SOAPInt"]]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(token = nil, recipient = nil, href = nil, text = nil, reference = nil, campaignid = nil) ⇒ SendWAPLink

Returns a new instance of SendWAPLink.



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

def initialize(token = nil, recipient = nil, href = nil, text = nil, reference = nil, campaignid = nil)
  @token = token
  @recipient = recipient
  @href = href
  @text = text
  @reference = reference
  @campaignid = campaignid
end

Instance Attribute Details

#campaignidObject

Returns the value of attribute campaignid.



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

def campaignid
  @campaignid
end

#hrefObject

Returns the value of attribute href.



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

def href
  @href
end

#recipientObject

Returns the value of attribute recipient.



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

def recipient
  @recipient
end

#referenceObject

Returns the value of attribute reference.



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

def reference
  @reference
end

#textObject

Returns the value of attribute text.



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

def text
  @text
end

#tokenObject

Returns the value of attribute token.



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

def token
  @token
end