Class: Stripe::V2::Core::AccountCreateParams::Configuration::Customer::Billing
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Configuration::Customer::Billing
- Defined in:
- lib/stripe/params/v2/core/account_create_params.rb
Defined Under Namespace
Classes: Invoice
Instance Attribute Summary collapse
-
#invoice ⇒ Object
Default invoice settings for the customer account.
Instance Method Summary collapse
-
#initialize(invoice: nil) ⇒ Billing
constructor
A new instance of Billing.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(invoice: nil) ⇒ Billing
Returns a new instance of Billing.
321 322 323 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 321 def initialize(invoice: nil) @invoice = invoice end |
Instance Attribute Details
#invoice ⇒ Object
Default invoice settings for the customer account.
319 320 321 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 319 def invoice @invoice end |