Class: Oca::BaseClient
- Inherits:
-
Object
- Object
- Oca::BaseClient
- Defined in:
- lib/oca-epak/base_client.rb
Direct Known Subclasses
Constant Summary collapse
- BASE_WSDL_URL =
"http://webservice.oca.com.ar".freeze
- FALSE_STRING =
"false".freeze
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(username, password) ⇒ BaseClient
constructor
A new instance of BaseClient.
Constructor Details
#initialize(username, password) ⇒ BaseClient
Returns a new instance of BaseClient.
9 10 11 12 |
# File 'lib/oca-epak/base_client.rb', line 9 def initialize(username, password) @username = username @password = password end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
3 4 5 |
# File 'lib/oca-epak/base_client.rb', line 3 def client @client end |
#password ⇒ Object
Returns the value of attribute password.
4 5 6 |
# File 'lib/oca-epak/base_client.rb', line 4 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
4 5 6 |
# File 'lib/oca-epak/base_client.rb', line 4 def username @username end |