Class: QuickbooksWebConnector::SoapWrapper::Authenticate

Inherits:
Object
  • Object
show all
Defined in:
lib/quickbooks_web_connector/soap_wrapper/default.rb

Overview

/authenticate

strUserName - SOAP::SOAPString
strPassword - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#strPasswordObject

Returns the value of attribute strPassword.



15
16
17
# File 'lib/quickbooks_web_connector/soap_wrapper/default.rb', line 15

def strPassword
  @strPassword
end

#strUserNameObject

Returns the value of attribute strUserName.



14
15
16
# File 'lib/quickbooks_web_connector/soap_wrapper/default.rb', line 14

def strUserName
  @strUserName
end