Class: Smartcall::Soap::Login
- Inherits:
-
Object
- Object
- Smartcall::Soap::Login
- Defined in:
- lib/smartcall/soap/default.rb
Overview
/login
Constant Summary collapse
- @@schema_type =
"login"
- @@schema_ns =
"http://tempuri.org/"
- @@schema_qualified =
"true"
- @@schema_element =
[["username", "SOAP::SOAPString"], ["password", "SOAP::SOAPString"]]
Instance Attribute Summary collapse
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(username = nil, password = nil) ⇒ Login
constructor
A new instance of Login.
Constructor Details
#initialize(username = nil, password = nil) ⇒ Login
Returns a new instance of Login.
15 16 17 18 |
# File 'lib/smartcall/soap/default.rb', line 15 def initialize(username = nil, password = nil) @username = username @password = password end |
Instance Attribute Details
#password ⇒ Object
Returns the value of attribute password.
13 14 15 |
# File 'lib/smartcall/soap/default.rb', line 13 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
12 13 14 |
# File 'lib/smartcall/soap/default.rb', line 12 def username @username end |