Package com.stripe.param
Class AccountUpdateParams.Settings.Builder
- java.lang.Object
-
- com.stripe.param.AccountUpdateParams.Settings.Builder
-
- Enclosing class:
- AccountUpdateParams.Settings
public static class AccountUpdateParams.Settings.Builder extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccountUpdateParams.Settingsbuild()Finalize and obtain parameter instance from this builder.AccountUpdateParams.Settings.BuilderputAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)Add all map key/value pairs to `extraParams` map.AccountUpdateParams.Settings.BuilderputExtraParam(java.lang.String key, java.lang.Object value)Add a key/value pair to `extraParams` map.AccountUpdateParams.Settings.BuildersetBranding(AccountUpdateParams.Settings.Branding branding)Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.AccountUpdateParams.Settings.BuildersetCardIssuing(AccountUpdateParams.Settings.CardIssuing cardIssuing)Settings specific to the account's use of the Card Issuing product.AccountUpdateParams.Settings.BuildersetCardPayments(AccountUpdateParams.Settings.CardPayments cardPayments)Settings specific to card charging on the account.AccountUpdateParams.Settings.BuildersetPayments(AccountUpdateParams.Settings.Payments payments)Settings that apply across payment methods for charging on the account.AccountUpdateParams.Settings.BuildersetPayouts(AccountUpdateParams.Settings.Payouts payouts)Settings specific to the account's payouts.
-
-
-
Method Detail
-
build
public AccountUpdateParams.Settings 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
public AccountUpdateParams.Settings.Builder putExtraParam(java.lang.String key, java.lang.Object value)
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.extraParamsfor the field documentation.
-
putAllExtraParam
public AccountUpdateParams.Settings.Builder putAllExtraParam(java.util.Map<java.lang.String,java.lang.Object> map)
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.extraParamsfor 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.
-
-