Class: Stripe::SetupIntentConfirmParams::PaymentMethodOptions::Card::ThreeDSecure
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::SetupIntentConfirmParams::PaymentMethodOptions::Card::ThreeDSecure
- Defined in:
- lib/stripe/params/setup_intent_confirm_params.rb
Defined Under Namespace
Classes: NetworkOptions
Instance Attribute Summary collapse
-
#ares_trans_status ⇒ Object
The
transStatusreturned from the card Issuer’s ACS in the ARes. -
#cryptogram ⇒ Object
The cryptogram, also known as the "authentication value" (AAV, CAVV or AEVV).
-
#electronic_commerce_indicator ⇒ Object
The Electronic Commerce Indicator (ECI) is returned by your 3D Secure provider and indicates what degree of authentication was performed.
-
#network_options ⇒ Object
Network specific 3DS fields.
-
#requestor_challenge_indicator ⇒ Object
The challenge indicator (
threeDSRequestorChallengeInd) which was requested in the AReq sent to the card Issuer's ACS. -
#transaction_id ⇒ Object
For 3D Secure 1, the XID.
-
#version ⇒ Object
The version of 3D Secure that was performed.
Instance Method Summary collapse
-
#initialize(ares_trans_status: nil, cryptogram: nil, electronic_commerce_indicator: nil, network_options: nil, requestor_challenge_indicator: nil, transaction_id: nil, version: nil) ⇒ ThreeDSecure
constructor
A new instance of ThreeDSecure.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(ares_trans_status: nil, cryptogram: nil, electronic_commerce_indicator: nil, network_options: nil, requestor_challenge_indicator: nil, transaction_id: nil, version: nil) ⇒ ThreeDSecure
Returns a new instance of ThreeDSecure.
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 787 def initialize( ares_trans_status: nil, cryptogram: nil, electronic_commerce_indicator: nil, network_options: nil, requestor_challenge_indicator: nil, transaction_id: nil, version: nil ) @ares_trans_status = ares_trans_status @cryptogram = cryptogram @electronic_commerce_indicator = electronic_commerce_indicator @network_options = @requestor_challenge_indicator = requestor_challenge_indicator @transaction_id = transaction_id @version = version end |
Instance Attribute Details
#ares_trans_status ⇒ Object
The transStatus returned from the card Issuer’s ACS in the ARes.
765 766 767 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 765 def ares_trans_status @ares_trans_status end |
#cryptogram ⇒ Object
The cryptogram, also known as the "authentication value" (AAV, CAVV or AEVV). This value is 20 bytes, base64-encoded into a 28-character string. (Most 3D Secure providers will return the base64-encoded version, which is what you should specify here.)
770 771 772 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 770 def cryptogram @cryptogram end |
#electronic_commerce_indicator ⇒ Object
The Electronic Commerce Indicator (ECI) is returned by your 3D Secure provider and indicates what degree of authentication was performed.
773 774 775 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 773 def electronic_commerce_indicator @electronic_commerce_indicator end |
#network_options ⇒ Object
Network specific 3DS fields. Network specific arguments require an explicit card brand choice. The parameter `payment_method_options.card.network`` must be populated accordingly
777 778 779 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 777 def @network_options end |
#requestor_challenge_indicator ⇒ Object
The challenge indicator (threeDSRequestorChallengeInd) which was requested in the
AReq sent to the card Issuer's ACS. A string containing 2 digits from 01-99.
780 781 782 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 780 def requestor_challenge_indicator @requestor_challenge_indicator end |
#transaction_id ⇒ Object
For 3D Secure 1, the XID. For 3D Secure 2, the Directory Server Transaction ID (dsTransID).
783 784 785 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 783 def transaction_id @transaction_id end |
#version ⇒ Object
The version of 3D Secure that was performed.
785 786 787 |
# File 'lib/stripe/params/setup_intent_confirm_params.rb', line 785 def version @version end |