Class: ServerAuthResult

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

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comServerAuthResult

authSessionId - SOAP::SOAPString
encryptedClientChallenge - SOAP::SOAPByte
serverChallenge - SOAP::SOAPByte

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = []) ⇒ ServerAuthResult

Returns a new instance of ServerAuthResult.



22
23
24
25
26
# File 'lib/stub/default.rb', line 22

def initialize(authSessionId = nil, encryptedClientChallenge = [], serverChallenge = [])
  @authSessionId = authSessionId
  @encryptedClientChallenge = encryptedClientChallenge
  @serverChallenge = serverChallenge
end

Instance Attribute Details

#authSessionIdObject

Returns the value of attribute authSessionId.



18
19
20
# File 'lib/stub/default.rb', line 18

def authSessionId
  @authSessionId
end

#encryptedClientChallengeObject

Returns the value of attribute encryptedClientChallenge.



19
20
21
# File 'lib/stub/default.rb', line 19

def encryptedClientChallenge
  @encryptedClientChallenge
end

#serverChallengeObject

Returns the value of attribute serverChallenge.



20
21
22
# File 'lib/stub/default.rb', line 20

def serverChallenge
  @serverChallenge
end