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

#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

Returns a new instance of Settings.



1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
# File 'lib/stripe/params/account_create_params.rb', line 1961

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.



1945
1946
1947
# File 'lib/stripe/params/account_create_params.rb', line 1945

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.



1947
1948
1949
# File 'lib/stripe/params/account_create_params.rb', line 1947

def branding
  @branding
end

#card_issuingObject

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



1949
1950
1951
# File 'lib/stripe/params/account_create_params.rb', line 1949

def card_issuing
  @card_issuing
end

#card_paymentsObject

Settings specific to card charging on the account.



1951
1952
1953
# File 'lib/stripe/params/account_create_params.rb', line 1951

def card_payments
  @card_payments
end

#invoicesObject

Settings specific to the account’s use of Invoices.



1953
1954
1955
# File 'lib/stripe/params/account_create_params.rb', line 1953

def invoices
  @invoices
end

#paymentsObject

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



1955
1956
1957
# File 'lib/stripe/params/account_create_params.rb', line 1955

def payments
  @payments
end

#payoutsObject

Settings specific to the account’s payouts.



1957
1958
1959
# File 'lib/stripe/params/account_create_params.rb', line 1957

def payouts
  @payouts
end

#treasuryObject

Settings specific to the account’s Treasury FinancialAccounts.



1959
1960
1961
# File 'lib/stripe/params/account_create_params.rb', line 1959

def treasury
  @treasury
end