Class: Smartcall::Soap::SendWAPLink
- Inherits:
-
Object
- Object
- Smartcall::Soap::SendWAPLink
- 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
-
#campaignid ⇒ Object
Returns the value of attribute campaignid.
-
#href ⇒ Object
Returns the value of attribute href.
-
#recipient ⇒ Object
Returns the value of attribute recipient.
-
#reference ⇒ Object
Returns the value of attribute reference.
-
#text ⇒ Object
Returns the value of attribute text.
-
#token ⇒ Object
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(token = nil, recipient = nil, href = nil, text = nil, reference = nil, campaignid = nil) ⇒ SendWAPLink
constructor
A new instance of SendWAPLink.
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
#campaignid ⇒ Object
Returns the value of attribute campaignid.
85 86 87 |
# File 'lib/smartcall/soap/default.rb', line 85 def campaignid @campaignid end |
#href ⇒ Object
Returns the value of attribute href.
82 83 84 |
# File 'lib/smartcall/soap/default.rb', line 82 def href @href end |
#recipient ⇒ Object
Returns the value of attribute recipient.
81 82 83 |
# File 'lib/smartcall/soap/default.rb', line 81 def recipient @recipient end |
#reference ⇒ Object
Returns the value of attribute reference.
84 85 86 |
# File 'lib/smartcall/soap/default.rb', line 84 def reference @reference end |
#text ⇒ Object
Returns the value of attribute text.
83 84 85 |
# File 'lib/smartcall/soap/default.rb', line 83 def text @text end |
#token ⇒ Object
Returns the value of attribute token.
80 81 82 |
# File 'lib/smartcall/soap/default.rb', line 80 def token @token end |