Class: Lithic::Resources::ThreeDS
- Inherits:
-
Object
- Object
- Lithic::Resources::ThreeDS
- 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
- #authentication ⇒ Lithic::Resources::ThreeDS::Authentication readonly
- #decisioning ⇒ Lithic::Resources::ThreeDS::Decisioning readonly
Instance Method Summary collapse
-
#initialize(client:) ⇒ ThreeDS
constructor
private
A new instance of ThreeDS.
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.
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
#authentication ⇒ Lithic::Resources::ThreeDS::Authentication (readonly)
7 8 9 |
# File 'lib/lithic/resources/three_ds.rb', line 7 def authentication @authentication end |
#decisioning ⇒ Lithic::Resources::ThreeDS::Decisioning (readonly)
10 11 12 |
# File 'lib/lithic/resources/three_ds.rb', line 10 def decisioning @decisioning end |