Class: Stripe::Account::UpdateParams::Settings::Invoices
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Account::UpdateParams::Settings::Invoices
- Defined in:
- lib/stripe/resources/account.rb
Instance Attribute Summary collapse
-
#default_account_tax_ids ⇒ Object
The list of default Account Tax IDs to automatically include on invoices.
Instance Method Summary collapse
-
#initialize(default_account_tax_ids: nil) ⇒ Invoices
constructor
A new instance of Invoices.
Methods inherited from RequestParams
Constructor Details
#initialize(default_account_tax_ids: nil) ⇒ Invoices
Returns a new instance of Invoices.
2536 2537 2538 |
# File 'lib/stripe/resources/account.rb', line 2536 def initialize(default_account_tax_ids: nil) @default_account_tax_ids = default_account_tax_ids end |
Instance Attribute Details
#default_account_tax_ids ⇒ Object
The list of default Account Tax IDs to automatically include on invoices. Account Tax IDs get added when an invoice is finalized.
2534 2535 2536 |
# File 'lib/stripe/resources/account.rb', line 2534 def default_account_tax_ids @default_account_tax_ids end |