Package com.stripe.param.v2.core
Class AccountCreateParams.Configuration.Builder
java.lang.Object
com.stripe.param.v2.core.AccountCreateParams.Configuration.Builder
- Enclosing class:
- AccountCreateParams.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 CardCreator Configuration allows the Account to create and issue cards to users.The Customer Configuration allows the Account to be used in inbound payment flows.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. -
setCardCreator
public AccountCreateParams.Configuration.Builder setCardCreator(AccountCreateParams.Configuration.CardCreator cardCreator) The CardCreator Configuration allows the Account to create and issue cards to users. -
setCustomer
public AccountCreateParams.Configuration.Builder setCustomer(AccountCreateParams.Configuration.Customer customer) The Customer Configuration allows the Account to be used in inbound payment flows. -
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.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. SeeAccountCreateParams.Configuration.extraParams
for the field documentation. -
setMerchant
public AccountCreateParams.Configuration.Builder setMerchant(AccountCreateParams.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 AccountCreateParams.Configuration.Builder setRecipient(AccountCreateParams.Configuration.Recipient recipient) The Recipient Configuration allows the Account to receive funds. -
setStorer
public AccountCreateParams.Configuration.Builder setStorer(AccountCreateParams.Configuration.Storer storer) The Storer Configuration allows the Account to store and move funds using stored-value FinancialAccounts.
-