Class: PurolatorWebServices::Soap::CredentialInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/purolator_web_services/soap/default.rb

Overview

/CredentialInfo

userName - SOAP::SOAPString
password - SOAP::SOAPString
clientID - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(userName = nil, password = nil, clientID = nil) ⇒ CredentialInfo

Returns a new instance of CredentialInfo.



94
95
96
97
98
# File 'lib/purolator_web_services/soap/default.rb', line 94

def initialize(userName = nil, password = nil, clientID = nil)
  @userName = userName
  @password = password
  @clientID = clientID
end

Instance Attribute Details

#clientIDObject

Returns the value of attribute clientID.



92
93
94
# File 'lib/purolator_web_services/soap/default.rb', line 92

def clientID
  @clientID
end

#passwordObject

Returns the value of attribute password.



91
92
93
# File 'lib/purolator_web_services/soap/default.rb', line 91

def password
  @password
end

#userNameObject

Returns the value of attribute userName.



90
91
92
# File 'lib/purolator_web_services/soap/default.rb', line 90

def userName
  @userName
end