Class: QuickbooksWebConnector::SoapWrapper::Authenticate
- Inherits:
-
Object
- Object
- QuickbooksWebConnector::SoapWrapper::Authenticate
- Defined in:
- lib/quickbooks_web_connector/soap_wrapper/default.rb
Overview
/authenticate
strUserName - SOAP::SOAPString
strPassword - SOAP::SOAPString
Instance Attribute Summary collapse
-
#strPassword ⇒ Object
Returns the value of attribute strPassword.
-
#strUserName ⇒ Object
Returns the value of attribute strUserName.
Instance Method Summary collapse
-
#initialize(strUserName = nil, strPassword = nil) ⇒ Authenticate
constructor
A new instance of Authenticate.
Constructor Details
#initialize(strUserName = nil, strPassword = nil) ⇒ Authenticate
Returns a new instance of Authenticate.
17 18 19 20 |
# File 'lib/quickbooks_web_connector/soap_wrapper/default.rb', line 17 def initialize(strUserName = nil, strPassword = nil) @strUserName = strUserName @strPassword = strPassword end |
Instance Attribute Details
#strPassword ⇒ Object
Returns the value of attribute strPassword.
15 16 17 |
# File 'lib/quickbooks_web_connector/soap_wrapper/default.rb', line 15 def strPassword @strPassword end |
#strUserName ⇒ Object
Returns the value of attribute strUserName.
14 15 16 |
# File 'lib/quickbooks_web_connector/soap_wrapper/default.rb', line 14 def strUserName @strUserName end |