Class: ZUORA::Login

Inherits:
Object
  • Object
show all
Defined in:
lib/zuora/ZUORA.rb

Overview

/login

username - SOAP::SOAPString
password - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(username = nil, password = nil) ⇒ Login

Returns a new instance of Login.



1191
1192
1193
1194
# File 'lib/zuora/ZUORA.rb', line 1191

def initialize(username = nil, password = nil)
  @username = username
  @password = password
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



1189
1190
1191
# File 'lib/zuora/ZUORA.rb', line 1189

def password
  @password
end

#usernameObject

Returns the value of attribute username.



1188
1189
1190
# File 'lib/zuora/ZUORA.rb', line 1188

def username
  @username
end