Class: Stripe::PaymentIntent::UpdateParams::PaymentMethodData::Boleto
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntent::UpdateParams::PaymentMethodData::Boleto
- Defined in:
- lib/stripe/resources/payment_intent.rb
Instance Attribute Summary collapse
-
#tax_id ⇒ Object
The tax ID of the customer (CPF for individual consumers or CNPJ for businesses consumers).
Instance Method Summary collapse
-
#initialize(tax_id: nil) ⇒ Boleto
constructor
A new instance of Boleto.
Methods inherited from RequestParams
Constructor Details
#initialize(tax_id: nil) ⇒ Boleto
Returns a new instance of Boleto.
4058 4059 4060 |
# File 'lib/stripe/resources/payment_intent.rb', line 4058 def initialize(tax_id: nil) @tax_id = tax_id end |
Instance Attribute Details
#tax_id ⇒ Object
The tax ID of the customer (CPF for individual consumers or CNPJ for businesses consumers)
4056 4057 4058 |
# File 'lib/stripe/resources/payment_intent.rb', line 4056 def tax_id @tax_id end |