Class: PurolatorWebServices::Soap::CredentialInfo
- Inherits:
-
Object
- Object
- PurolatorWebServices::Soap::CredentialInfo
- Defined in:
- lib/purolator_web_services/soap/default.rb
Overview
/CredentialInfo
userName - SOAP::SOAPString
password - SOAP::SOAPString
clientID - SOAP::SOAPString
Instance Attribute Summary collapse
-
#clientID ⇒ Object
Returns the value of attribute clientID.
-
#password ⇒ Object
Returns the value of attribute password.
-
#userName ⇒ Object
Returns the value of attribute userName.
Instance Method Summary collapse
-
#initialize(userName = nil, password = nil, clientID = nil) ⇒ CredentialInfo
constructor
A new instance of CredentialInfo.
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
#clientID ⇒ Object
Returns the value of attribute clientID.
92 93 94 |
# File 'lib/purolator_web_services/soap/default.rb', line 92 def clientID @clientID end |
#password ⇒ Object
Returns the value of attribute password.
91 92 93 |
# File 'lib/purolator_web_services/soap/default.rb', line 91 def password @password end |
#userName ⇒ Object
Returns the value of attribute userName.
90 91 92 |
# File 'lib/purolator_web_services/soap/default.rb', line 90 def userName @userName end |