Class: Stripe::Checkout::SessionService::CreateParams::InvoiceCreation::InvoiceData::RenderingOptions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/checkout/session_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount_tax_display: nil) ⇒ RenderingOptions

Returns a new instance of RenderingOptions.



395
396
397
# File 'lib/stripe/services/checkout/session_service.rb', line 395

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

Instance Attribute Details

#amount_tax_displayObject

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.



393
394
395
# File 'lib/stripe/services/checkout/session_service.rb', line 393

def amount_tax_display
  @amount_tax_display
end