Class: SendSMS
- Inherits:
-
Object
- Object
- SendSMS
- Defined in:
- lib/default.rb
Overview
http://pennytel.comsendSMS
id - SOAP::SOAPString
password - SOAP::SOAPString
type - SOAP::SOAPInt
to - SOAP::SOAPString
- SOAP::SOAPString
date - SOAP::SOAPDateTime
Instance Attribute Summary collapse
-
#date ⇒ Object
Returns the value of attribute date.
-
#id ⇒ Object
Returns the value of attribute id.
-
#message ⇒ Object
Returns the value of attribute message.
-
#password ⇒ Object
Returns the value of attribute password.
-
#to ⇒ Object
Returns the value of attribute to.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(id = nil, password = nil, type = nil, to = nil, message = nil, date = nil) ⇒ SendSMS
constructor
A new instance of SendSMS.
Constructor Details
#initialize(id = nil, password = nil, type = nil, to = nil, message = nil, date = nil) ⇒ SendSMS
Returns a new instance of SendSMS.
431 432 433 434 435 436 437 438 |
# File 'lib/default.rb', line 431 def initialize(id = nil, password = nil, type = nil, to = nil, = nil, date = nil) @id = id @password = password @type = type @to = to @message = @date = date end |
Instance Attribute Details
#date ⇒ Object
Returns the value of attribute date.
429 430 431 |
# File 'lib/default.rb', line 429 def date @date end |
#id ⇒ Object
Returns the value of attribute id.
424 425 426 |
# File 'lib/default.rb', line 424 def id @id end |
#message ⇒ Object
Returns the value of attribute message.
428 429 430 |
# File 'lib/default.rb', line 428 def @message end |
#password ⇒ Object
Returns the value of attribute password.
425 426 427 |
# File 'lib/default.rb', line 425 def password @password end |
#to ⇒ Object
Returns the value of attribute to.
427 428 429 |
# File 'lib/default.rb', line 427 def to @to end |
#type ⇒ Object
Returns the value of attribute type.
426 427 428 |
# File 'lib/default.rb', line 426 def type @type end |