Class: Stripe::PaymentIntentUpdateParams::PaymentMethodData::Boleto

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(tax_id: nil) ⇒ Boleto



326
327
328
# File 'lib/stripe/params/payment_intent_update_params.rb', line 326

def initialize(tax_id: nil)
  @tax_id = tax_id
end

Instance Attribute Details

#tax_idObject

The tax ID of the customer (CPF for individual consumers or CNPJ for businesses consumers)



324
325
326
# File 'lib/stripe/params/payment_intent_update_params.rb', line 324

def tax_id
  @tax_id
end