Class: Smartcall::Soap::LoginResponse
- Inherits:
-
Object
- Object
- Smartcall::Soap::LoginResponse
- Defined in:
- lib/smartcall/soap/default.rb
Overview
/loginResponse
Constant Summary collapse
- @@schema_type =
"loginResponse"
- @@schema_ns =
"http://tempuri.org/"
- @@schema_qualified =
"true"
- @@schema_element =
[["loginResult", "SOAP::SOAPBoolean"], ["token", "SOAP::SOAPString"]]
Instance Attribute Summary collapse
-
#loginResult ⇒ Object
Returns the value of attribute loginResult.
-
#token ⇒ Object
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(loginResult = nil, token = nil) ⇒ LoginResponse
constructor
A new instance of LoginResponse.
Constructor Details
#initialize(loginResult = nil, token = nil) ⇒ LoginResponse
Returns a new instance of LoginResponse.
31 32 33 34 |
# File 'lib/smartcall/soap/default.rb', line 31 def initialize(loginResult = nil, token = nil) @loginResult = loginResult @token = token end |
Instance Attribute Details
#loginResult ⇒ Object
Returns the value of attribute loginResult.
28 29 30 |
# File 'lib/smartcall/soap/default.rb', line 28 def loginResult @loginResult end |
#token ⇒ Object
Returns the value of attribute token.
29 30 31 |
# File 'lib/smartcall/soap/default.rb', line 29 def token @token end |