Class: Stripe::AccountCreateParams::Settings

Inherits:
RequestParams show all
Defined in:
lib/stripe/params/account_create_params.rb

Defined Under Namespace

Classes: BacsDebitPayments, Branding, CardIssuing, CardPayments, Invoices, Payments, Payouts, Treasury

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(bacs_debit_payments: nil, branding: nil, card_issuing: nil, card_payments: nil, invoices: nil, payments: nil, payouts: nil, treasury: nil) ⇒ Settings



2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
# File 'lib/stripe/params/account_create_params.rb', line 2054

def initialize(
  bacs_debit_payments: nil,
  branding: nil,
  card_issuing: nil,
  card_payments: nil,
  invoices: nil,
  payments: nil,
  payouts: nil,
  treasury: nil
)
  @bacs_debit_payments = bacs_debit_payments
  @branding = branding
  @card_issuing = card_issuing
  @card_payments = card_payments
  @invoices = invoices
  @payments = payments
  @payouts = payouts
  @treasury = treasury
end

Instance Attribute Details

#bacs_debit_paymentsObject

Settings specific to Bacs Direct Debit.



2038
2039
2040
# File 'lib/stripe/params/account_create_params.rb', line 2038

def bacs_debit_payments
  @bacs_debit_payments
end

#brandingObject

Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.



2040
2041
2042
# File 'lib/stripe/params/account_create_params.rb', line 2040

def branding
  @branding
end

#card_issuingObject

Settings specific to the account's use of the Card Issuing product.



2042
2043
2044
# File 'lib/stripe/params/account_create_params.rb', line 2042

def card_issuing
  @card_issuing
end

#card_paymentsObject

Settings specific to card charging on the account.



2044
2045
2046
# File 'lib/stripe/params/account_create_params.rb', line 2044

def card_payments
  @card_payments
end

#invoicesObject

Settings specific to the account’s use of Invoices.



2046
2047
2048
# File 'lib/stripe/params/account_create_params.rb', line 2046

def invoices
  @invoices
end

#paymentsObject

Settings that apply across payment methods for charging on the account.



2048
2049
2050
# File 'lib/stripe/params/account_create_params.rb', line 2048

def payments
  @payments
end

#payoutsObject

Settings specific to the account's payouts.



2050
2051
2052
# File 'lib/stripe/params/account_create_params.rb', line 2050

def payouts
  @payouts
end

#treasuryObject

Settings specific to the account's Treasury FinancialAccounts.



2052
2053
2054
# File 'lib/stripe/params/account_create_params.rb', line 2052

def treasury
  @treasury
end