Class: Stripe::PaymentRecordReportPaymentParams::PaymentMethodDetails::Card::Checks

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



170
171
172
173
174
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 170

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.



164
165
166
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 164

def address_line1_check
  @address_line1_check
end

#address_postal_code_checkObject

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



166
167
168
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 166

def address_postal_code_check
  @address_postal_code_check
end

#cvc_checkObject

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



168
169
170
# File 'lib/stripe/params/payment_record_report_payment_params.rb', line 168

def cvc_check
  @cvc_check
end