Class: Stripe::PaymentAttemptRecordReportGuaranteedParams::PaymentMethodDetails::Card::Checks

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_attempt_record_report_guaranteed_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_attempt_record_report_guaranteed_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_checkObject

The result of the check on the cardholder's address line 1.



10
11
12
# File 'lib/stripe/params/payment_attempt_record_report_guaranteed_params.rb', line 10

def address_line1_check
  @address_line1_check
end

#address_postal_code_checkObject

The result of the check on the cardholder's postal code.



12
13
14
# File 'lib/stripe/params/payment_attempt_record_report_guaranteed_params.rb', line 12

def address_postal_code_check
  @address_postal_code_check
end

#cvc_checkObject

The result of the check on the card's CVC.



14
15
16
# File 'lib/stripe/params/payment_attempt_record_report_guaranteed_params.rb', line 14

def cvc_check
  @cvc_check
end