Class: SetProfile
- Inherits:
-
Object
- Object
- SetProfile
- Defined in:
- lib/default.rb
Overview
http://pennytel.comsetProfile
id - SOAP::SOAPString
password - SOAP::SOAPString
contact - PennyTelContact
Instance Attribute Summary collapse
-
#contact ⇒ Object
Returns the value of attribute contact.
-
#id ⇒ Object
Returns the value of attribute id.
-
#password ⇒ Object
Returns the value of attribute password.
Instance Method Summary collapse
-
#initialize(id = nil, password = nil, contact = nil) ⇒ SetProfile
constructor
A new instance of SetProfile.
Constructor Details
#initialize(id = nil, password = nil, contact = nil) ⇒ SetProfile
Returns a new instance of SetProfile.
317 318 319 320 321 |
# File 'lib/default.rb', line 317 def initialize(id = nil, password = nil, contact = nil) @id = id @password = password @contact = contact end |
Instance Attribute Details
#contact ⇒ Object
Returns the value of attribute contact.
315 316 317 |
# File 'lib/default.rb', line 315 def contact @contact end |
#id ⇒ Object
Returns the value of attribute id.
313 314 315 |
# File 'lib/default.rb', line 313 def id @id end |
#password ⇒ Object
Returns the value of attribute password.
314 315 316 |
# File 'lib/default.rb', line 314 def password @password end |