Class: Stripe::PaymentRecordReportPaymentAttemptParams::PaymentMethodDetails::Card::Checks
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentRecordReportPaymentAttemptParams::PaymentMethodDetails::Card::Checks
- Defined in:
- lib/stripe/params/payment_record_report_payment_attempt_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.
140 141 142 143 144 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 140 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.
134 135 136 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 134 def address_line1_check @address_line1_check end |
#address_postal_code_check ⇒ Object
The result of the check on the cardholder's postal code.
136 137 138 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 136 def address_postal_code_check @address_postal_code_check end |
#cvc_check ⇒ Object
The result of the check on the card's CVC.
138 139 140 |
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 138 def cvc_check @cvc_check end |