Class: Smartcall::Soap::SendBinaryString
- Inherits:
-
Object
- Object
- Smartcall::Soap::SendBinaryString
- Defined in:
- lib/smartcall/soap/default.rb
Overview
/sendBinaryString
Constant Summary collapse
- @@schema_type =
"sendSMS"
- @@schema_ns =
"http://tempuri.org/"
- @@schema_qualified =
"true"
- @@schema_element =
[["token", "SOAP::SOAPString"], ["recipient", "SOAP::SOAPString"], ["binary", "SOAP::SOAPString"], ["reference", "SOAP::SOAPString"], ["campaignid", "SOAP::SOAPInt"]]
Instance Attribute Summary collapse
-
#binary ⇒ Object
Returns the value of attribute binary.
-
#campaignid ⇒ Object
Returns the value of attribute campaignid.
-
#recipient ⇒ Object
Returns the value of attribute recipient.
-
#reference ⇒ Object
Returns the value of attribute reference.
-
#token ⇒ Object
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(token = nil, recipient = nil, binary = nil, reference = nil, campaignid = nil) ⇒ SendBinaryString
constructor
A new instance of SendBinaryString.
Constructor Details
#initialize(token = nil, recipient = nil, binary = nil, reference = nil, campaignid = nil) ⇒ SendBinaryString
Returns a new instance of SendBinaryString.
124 125 126 127 128 129 130 |
# File 'lib/smartcall/soap/default.rb', line 124 def initialize(token = nil, recipient = nil, binary = nil, reference = nil, campaignid = nil) @token = token @recipient = recipient @binary = binary @reference = reference @campaignid = campaignid end |
Instance Attribute Details
#binary ⇒ Object
Returns the value of attribute binary.
120 121 122 |
# File 'lib/smartcall/soap/default.rb', line 120 def binary @binary end |
#campaignid ⇒ Object
Returns the value of attribute campaignid.
122 123 124 |
# File 'lib/smartcall/soap/default.rb', line 122 def campaignid @campaignid end |
#recipient ⇒ Object
Returns the value of attribute recipient.
119 120 121 |
# File 'lib/smartcall/soap/default.rb', line 119 def recipient @recipient end |
#reference ⇒ Object
Returns the value of attribute reference.
121 122 123 |
# File 'lib/smartcall/soap/default.rb', line 121 def reference @reference end |
#token ⇒ Object
Returns the value of attribute token.
118 119 120 |
# File 'lib/smartcall/soap/default.rb', line 118 def token @token end |