Class: Stripe::AccountCreateParams::Settings::Invoices
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountCreateParams::Settings::Invoices
- Defined in:
- lib/stripe/params/account_create_params.rb
Instance Attribute Summary collapse
-
#hosted_payment_method_save ⇒ Object
Whether to save the payment method after a payment is completed for a one-time invoice or a subscription invoice when the customer already has a default payment method on the hosted invoice page.
Instance Method Summary collapse
-
#initialize(hosted_payment_method_save: nil) ⇒ Invoices
constructor
A new instance of Invoices.
Methods inherited from RequestParams
Constructor Details
#initialize(hosted_payment_method_save: nil) ⇒ Invoices
1907 1908 1909 |
# File 'lib/stripe/params/account_create_params.rb', line 1907 def initialize(hosted_payment_method_save: nil) @hosted_payment_method_save = hosted_payment_method_save end |
Instance Attribute Details
#hosted_payment_method_save ⇒ Object
Whether to save the payment method after a payment is completed for a one-time invoice or a subscription invoice when the customer already has a default payment method on the hosted invoice page.
1905 1906 1907 |
# File 'lib/stripe/params/account_create_params.rb', line 1905 def hosted_payment_method_save @hosted_payment_method_save end |