Class: Stripe::PaymentLinkUpdateParams::InvoiceCreation
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentLinkUpdateParams::InvoiceCreation
- Defined in:
- lib/stripe/params/payment_link_update_params.rb
Defined Under Namespace
Classes: InvoiceData
Instance Attribute Summary collapse
-
#enabled ⇒ Object
Whether the feature is enabled.
-
#invoice_data ⇒ Object
Invoice PDF configuration.
Instance Method Summary collapse
-
#initialize(enabled: nil, invoice_data: nil) ⇒ InvoiceCreation
constructor
A new instance of InvoiceCreation.
Methods inherited from RequestParams
Constructor Details
#initialize(enabled: nil, invoice_data: nil) ⇒ InvoiceCreation
Returns a new instance of InvoiceCreation.
295 296 297 298 |
# File 'lib/stripe/params/payment_link_update_params.rb', line 295 def initialize(enabled: nil, invoice_data: nil) @enabled = enabled @invoice_data = invoice_data end |
Instance Attribute Details
#enabled ⇒ Object
Whether the feature is enabled
291 292 293 |
# File 'lib/stripe/params/payment_link_update_params.rb', line 291 def enabled @enabled end |
#invoice_data ⇒ Object
Invoice PDF configuration.
293 294 295 |
# File 'lib/stripe/params/payment_link_update_params.rb', line 293 def invoice_data @invoice_data end |