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 Customer Configuration allows the Account to be used in inbound payment flows.Enables 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.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
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.extraParamsfor 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.extraParamsfor the field documentation. -
setMerchant
public AccountCreateParams.Configuration.Builder setMerchant(AccountCreateParams.Configuration.Merchant merchant) Enables the Account to act as a connected account and collect payments facilitated by a Connect platform. You must onboard your platform to Connect before you can add this configuration to your connected accounts. Utilize this configuration when the Account will be the Merchant of Record, like with Direct charges or Destination Charges with on_behalf_of set. -
setRecipient
public AccountCreateParams.Configuration.Builder setRecipient(AccountCreateParams.Configuration.Recipient recipient) The Recipient Configuration allows the Account to receive funds. Utilize this configuration if the Account will not be the Merchant of Record, like with Separate Charges & Transfers, or Destination Charges without on_behalf_of set.
-