Class: ZUORA::Login
- Inherits:
-
Object
- Object
- ZUORA::Login
- Defined in:
- lib/zuora/ZUORA.rb
Overview
/login
username - SOAP::SOAPString
password - SOAP::SOAPString
Instance Attribute Summary collapse
-
#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) ⇒ Login
constructor
A new instance of Login.
Constructor Details
#initialize(username = nil, password = nil) ⇒ Login
Returns a new instance of Login.
1231 1232 1233 1234 |
# File 'lib/zuora/ZUORA.rb', line 1231 def initialize(username = nil, password = nil) @username = username @password = password end |
Instance Attribute Details
#password ⇒ Object
Returns the value of attribute password.
1229 1230 1231 |
# File 'lib/zuora/ZUORA.rb', line 1229 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
1228 1229 1230 |
# File 'lib/zuora/ZUORA.rb', line 1228 def username @username end |