Class: Login

Inherits:
Object
  • Object
show all
Defined in:
lib/stub/default.rb

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comlogin

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.



971
972
973
974
# File 'lib/stub/default.rb', line 971

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

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



969
970
971
# File 'lib/stub/default.rb', line 969

def password
  @password
end

#usernameObject

Returns the value of attribute username.



968
969
970
# File 'lib/stub/default.rb', line 968

def username
  @username
end