Class: Stripe::SetupIntentUpdateParams::PaymentMethodData::Boleto

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

Returns a new instance of Boleto.



112
113
114
# File 'lib/stripe/params/setup_intent_update_params.rb', line 112

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)



110
111
112
# File 'lib/stripe/params/setup_intent_update_params.rb', line 110

def tax_id
  @tax_id
end