Package com.stripe.param
Class AccountUpdateParams.Settings.Builder
java.lang.Object
com.stripe.param.AccountUpdateParams.Settings.Builder
- Enclosing class:
- AccountUpdateParams.Settings
-
Constructor Summary
Constructors -
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.Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.setCardIssuing
(AccountUpdateParams.Settings.CardIssuing cardIssuing) Settings specific to the account's use of the Card Issuing product.setCardPayments
(AccountUpdateParams.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 tax forms.Settings specific to the account's Treasury FinancialAccounts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setBranding
public AccountUpdateParams.Settings.Builder setBranding(AccountUpdateParams.Settings.Branding branding) Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products. -
setCardIssuing
public AccountUpdateParams.Settings.Builder setCardIssuing(AccountUpdateParams.Settings.CardIssuing cardIssuing) Settings specific to the account's use of the Card Issuing product. -
setCardPayments
public AccountUpdateParams.Settings.Builder setCardPayments(AccountUpdateParams.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. SeeAccountUpdateParams.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. SeeAccountUpdateParams.Settings.extraParams
for the field documentation. -
setPayments
public AccountUpdateParams.Settings.Builder setPayments(AccountUpdateParams.Settings.Payments payments) Settings that apply across payment methods for charging on the account. -
setPayouts
public AccountUpdateParams.Settings.Builder setPayouts(AccountUpdateParams.Settings.Payouts payouts) Settings specific to the account's payouts. -
setTaxForms
public AccountUpdateParams.Settings.Builder setTaxForms(AccountUpdateParams.Settings.TaxForms taxForms) Settings specific to the account's tax forms. -
setTreasury
public AccountUpdateParams.Settings.Builder setTreasury(AccountUpdateParams.Settings.Treasury treasury) Settings specific to the account's Treasury FinancialAccounts.
-