Class: Stripe::PaymentRecordReportPaymentAttemptFailedParams::PaymentMethodDetails::Card::Checks
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentAttemptFailedParams::PaymentMethodDetails::Card::Checks
- Defined in:
- lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb
Instance Attribute Summary collapse
-
#address_line1_check ⇒ Object
The result of the check on the cardholder's address line 1.
-
#address_postal_code_check ⇒ Object
The result of the check on the cardholder's postal code.
-
#cvc_check ⇒ Object
The result of the check on the card's CVC.
Instance Method Summary collapse
-
#initialize(address_line1_check: nil, address_postal_code_check: nil, cvc_check: nil) ⇒ Checks
constructor
A new instance of Checks.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(address_line1_check: nil, address_postal_code_check: nil, cvc_check: nil) ⇒ Checks
Returns a new instance of Checks.
16 17 18 19 20 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb', line 16 def initialize(address_line1_check: nil, address_postal_code_check: nil, cvc_check: nil) @address_line1_check = address_line1_check @address_postal_code_check = address_postal_code_check @cvc_check = cvc_check end |
Instance Attribute Details
#address_line1_check ⇒ Object
The result of the check on the cardholder's address line 1.
10 11 12 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb', line 10 def address_line1_check @address_line1_check end |
#address_postal_code_check ⇒ Object
The result of the check on the cardholder's postal code.
12 13 14 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb', line 12 def address_postal_code_check @address_postal_code_check end |
#cvc_check ⇒ Object
The result of the check on the card's CVC.
14 15 16 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb', line 14 def cvc_check @cvc_check end |