Class: Stripe::Checkout::SessionUpdateParams::InvoiceCreation
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Checkout::SessionUpdateParams::InvoiceCreation
- Defined in:
- lib/stripe/params/checkout/session_update_params.rb
Defined Under Namespace
Classes: InvoiceData
Instance Attribute Summary collapse
-
#invoice_data ⇒ Object
Parameters passed when creating invoices for payment-mode Checkout Sessions.
Instance Method Summary collapse
-
#initialize(invoice_data: nil) ⇒ InvoiceCreation
constructor
A new instance of InvoiceCreation.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(invoice_data: nil) ⇒ InvoiceCreation
Returns a new instance of InvoiceCreation.
142 143 144 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 142 def initialize(invoice_data: nil) @invoice_data = invoice_data end |
Instance Attribute Details
#invoice_data ⇒ Object
Parameters passed when creating invoices for payment-mode Checkout Sessions.
140 141 142 |
# File 'lib/stripe/params/checkout/session_update_params.rb', line 140 def invoice_data @invoice_data end |