Class: Stripe::V2::Core::AccountCreateParams::Configuration::Customer::Billing

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_params.rb

Defined Under Namespace

Classes: Invoice

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



78
79
80
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 78

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

Instance Attribute Details

#invoiceObject

Default invoice settings for the customer account.



76
77
78
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 76

def invoice
  @invoice
end