Class: Stripe::PaymentIntentCreateParams::PaymentMethodData::Boleto

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



1077
1078
1079
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1077

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)



1075
1076
1077
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1075

def tax_id
  @tax_id
end