Package com.stripe.param.v2.core
Class AccountUpdateParams.Configuration.Builder
java.lang.Object
com.stripe.param.v2.core.AccountUpdateParams.Configuration.Builder
- Enclosing class:
- AccountUpdateParams.Configuration
-
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.The Customer Configuration allows the Account to be charged.The Merchant configuration allows the Account to act as a connected account and collect payments facilitated by a Connect platform.The Recipient Configuration allows the Account to receive funds.The Storer Configuration allows the Account to store and move funds using stored-value FinancialAccounts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCustomer
public AccountUpdateParams.Configuration.Builder setCustomer(AccountUpdateParams.Configuration.Customer customer) The Customer Configuration allows the Account to be charged. -
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.Configuration.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.Configuration.extraParams
for the field documentation. -
setMerchant
public AccountUpdateParams.Configuration.Builder setMerchant(AccountUpdateParams.Configuration.Merchant merchant) The Merchant configuration allows the Account to act as a connected account and collect payments facilitated by a Connect platform. You can add this configuration to your connected accounts only if you’ve completed onboarding as a Connect platform. -
setRecipient
public AccountUpdateParams.Configuration.Builder setRecipient(AccountUpdateParams.Configuration.Recipient recipient) The Recipient Configuration allows the Account to receive funds. -
setStorer
public AccountUpdateParams.Configuration.Builder setStorer(AccountUpdateParams.Configuration.Storer storer) The Storer Configuration allows the Account to store and move funds using stored-value FinancialAccounts.
-