Class: Stripe::CustomerService::CreateParams::InvoiceSettings::RenderingOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::CustomerService::CreateParams::InvoiceSettings::RenderingOptions
- Defined in:
- lib/stripe/services/customer_service.rb
Instance Attribute Summary collapse
-
#amount_tax_display ⇒ Object
How line-item prices and amounts will be displayed with respect to tax on invoice PDFs.
-
#template ⇒ Object
ID of the invoice rendering template to use for future invoices.
Instance Method Summary collapse
-
#initialize(amount_tax_display: nil, template: nil) ⇒ RenderingOptions
constructor
A new instance of RenderingOptions.
Methods inherited from RequestParams
Constructor Details
#initialize(amount_tax_display: nil, template: nil) ⇒ RenderingOptions
Returns a new instance of RenderingOptions.
393 394 395 396 |
# File 'lib/stripe/services/customer_service.rb', line 393 def initialize(amount_tax_display: nil, template: nil) @amount_tax_display = amount_tax_display @template = template end |
Instance Attribute Details
#amount_tax_display ⇒ Object
How line-item prices and amounts will be displayed with respect to tax on invoice PDFs. One of ‘exclude_tax` or `include_inclusive_tax`. `include_inclusive_tax` will include inclusive tax (and exclude exclusive tax) in invoice PDF amounts. `exclude_tax` will exclude all tax (inclusive and exclusive alike) from invoice PDF amounts.
389 390 391 |
# File 'lib/stripe/services/customer_service.rb', line 389 def amount_tax_display @amount_tax_display end |
#template ⇒ Object
ID of the invoice rendering template to use for future invoices.
391 392 393 |
# File 'lib/stripe/services/customer_service.rb', line 391 def template @template end |