Class: Stripe::PaymentRecordReportPaymentAttemptParams::PaymentMethodDetails::Card::Checks

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_record_report_payment_attempt_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.



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_checkObject

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_checkObject

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_checkObject

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