Class: Stripe::PaymentIntentConfirmParams::PaymentMethodData::Boleto
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodData::Boleto
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.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.
1063 1064 1065 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1063 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)
1061 1062 1063 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1061 def tax_id @tax_id end |