Package com.stripe.param
Class AccountCreateParams.Settings.Builder
java.lang.Object
com.stripe.param.AccountCreateParams.Settings.Builder
- Enclosing class:
- AccountCreateParams.Settings
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setBacsDebitPayments
(AccountCreateParams.Settings.BacsDebitPayments bacsDebitPayments) Settings specific to Bacs Direct Debit.Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.setCardIssuing
(AccountCreateParams.Settings.CardIssuing cardIssuing) Settings specific to the account's use of the Card Issuing product.setCardPayments
(AccountCreateParams.Settings.CardPayments cardPayments) Settings specific to card charging on the account.Settings that apply across payment methods for charging on the account.Settings specific to the account's payouts.Settings specific to the account's Treasury FinancialAccounts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setBacsDebitPayments
public AccountCreateParams.Settings.Builder setBacsDebitPayments(AccountCreateParams.Settings.BacsDebitPayments bacsDebitPayments) Settings specific to Bacs Direct Debit. -
setBranding
public AccountCreateParams.Settings.Builder setBranding(AccountCreateParams.Settings.Branding branding) Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products. -
setCardIssuing
public AccountCreateParams.Settings.Builder setCardIssuing(AccountCreateParams.Settings.CardIssuing cardIssuing) Settings specific to the account's use of the Card Issuing product. -
setCardPayments
public AccountCreateParams.Settings.Builder setCardPayments(AccountCreateParams.Settings.CardPayments cardPayments) Settings specific to card charging on the account. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAccountCreateParams.Settings.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAccountCreateParams.Settings.extraParams
for the field documentation. -
setPayments
public AccountCreateParams.Settings.Builder setPayments(AccountCreateParams.Settings.Payments payments) Settings that apply across payment methods for charging on the account. -
setPayouts
public AccountCreateParams.Settings.Builder setPayouts(AccountCreateParams.Settings.Payouts payouts) Settings specific to the account's payouts. -
setTreasury
public AccountCreateParams.Settings.Builder setTreasury(AccountCreateParams.Settings.Treasury treasury) Settings specific to the account's Treasury FinancialAccounts.
-