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.



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

#passwordObject

Returns the value of attribute password.



1229
1230
1231
# File 'lib/zuora/ZUORA.rb', line 1229

def password
  @password
end

#usernameObject

Returns the value of attribute username.



1228
1229
1230
# File 'lib/zuora/ZUORA.rb', line 1228

def username
  @username
end