Class: Lithic::Resources::ThreeDS

Inherits:
Object
  • Object
show all
Defined in:
lib/lithic/resources/three_ds.rb,
lib/lithic/resources/three_ds/decisioning.rb,
lib/lithic/resources/three_ds/authentication.rb

Defined Under Namespace

Classes: Authentication, Decisioning

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:) ⇒ ThreeDS

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ThreeDS.

Parameters:



15
16
17
18
19
# File 'lib/lithic/resources/three_ds.rb', line 15

def initialize(client:)
  @client = client
  @authentication = Lithic::Resources::ThreeDS::Authentication.new(client: client)
  @decisioning = Lithic::Resources::ThreeDS::Decisioning.new(client: client)
end

Instance Attribute Details

#authenticationLithic::Resources::ThreeDS::Authentication (readonly)



7
8
9
# File 'lib/lithic/resources/three_ds.rb', line 7

def authentication
  @authentication
end

#decisioningLithic::Resources::ThreeDS::Decisioning (readonly)



10
11
12
# File 'lib/lithic/resources/three_ds.rb', line 10

def decisioning
  @decisioning
end