Class: CGIParty::AuthenticateRequest

Inherits:
Request
  • Object
show all
Defined in:
lib/cgi_party/authenticate_request.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Request

#execute

Constructor Details

#initialize(savon_client, ssn, options: {}) ⇒ AuthenticateRequest

Returns a new instance of AuthenticateRequest.



8
9
10
11
# File 'lib/cgi_party/authenticate_request.rb', line 8

def initialize(savon_client, ssn, options: {})
  super(savon_client, options)
  @ssn = ssn
end

Instance Attribute Details

#display_nameObject (readonly)

Returns the value of attribute display_name.



6
7
8
# File 'lib/cgi_party/authenticate_request.rb', line 6

def display_name
  @display_name
end

#providerObject (readonly)

Returns the value of attribute provider.



6
7
8
# File 'lib/cgi_party/authenticate_request.rb', line 6

def provider
  @provider
end

#service_idObject (readonly)

Returns the value of attribute service_id.



6
7
8
# File 'lib/cgi_party/authenticate_request.rb', line 6

def service_id
  @service_id
end

#ssnObject (readonly)

Returns the value of attribute ssn.



6
7
8
# File 'lib/cgi_party/authenticate_request.rb', line 6

def ssn
  @ssn
end