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.



1205
1206
1207
1208
# File 'lib/zuora/ZUORA.rb', line 1205

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

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



1203
1204
1205
# File 'lib/zuora/ZUORA.rb', line 1203

def password
  @password
end

#usernameObject

Returns the value of attribute username.



1202
1203
1204
# File 'lib/zuora/ZUORA.rb', line 1202

def username
  @username
end