Class: Smartcall::Soap::SendBinaryString

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#binaryObject

Returns the value of attribute binary.



120
121
122
# File 'lib/smartcall/soap/default.rb', line 120

def binary
  @binary
end

#campaignidObject

Returns the value of attribute campaignid.



122
123
124
# File 'lib/smartcall/soap/default.rb', line 122

def campaignid
  @campaignid
end

#recipientObject

Returns the value of attribute recipient.



119
120
121
# File 'lib/smartcall/soap/default.rb', line 119

def recipient
  @recipient
end

#referenceObject

Returns the value of attribute reference.



121
122
123
# File 'lib/smartcall/soap/default.rb', line 121

def reference
  @reference
end

#tokenObject

Returns the value of attribute token.



118
119
120
# File 'lib/smartcall/soap/default.rb', line 118

def token
  @token
end