Class: Stripe::InvoiceCreateParams::PaymentSettings::PaymentMethodOptions::Pix

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount_includes_iof: nil) ⇒ Pix

Returns a new instance of Pix.



236
237
238
# File 'lib/stripe/params/invoice_create_params.rb', line 236

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

Instance Attribute Details

#amount_includes_iofObject

Determines if the amount includes the IOF tax. Defaults to ‘never`.



234
235
236
# File 'lib/stripe/params/invoice_create_params.rb', line 234

def amount_includes_iof
  @amount_includes_iof
end