Package com.stripe.param
Class AccountSessionCreateParams.Components.Builder
java.lang.Object
com.stripe.param.AccountSessionCreateParams.Components.Builder
- Enclosing class:
- AccountSessionCreateParams.Components
-
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.setAccountOnboarding(AccountSessionCreateParams.Components.AccountOnboarding accountOnboarding) Configuration for the account onboarding embedded component.Configuration for the payment details embedded component.Configuration for the payments embedded component.Configuration for the payouts embedded component.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAccountOnboarding
public AccountSessionCreateParams.Components.Builder setAccountOnboarding(AccountSessionCreateParams.Components.AccountOnboarding accountOnboarding) Configuration for the account onboarding embedded component. -
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. SeeAccountSessionCreateParams.Components.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. SeeAccountSessionCreateParams.Components.extraParamsfor the field documentation. -
setPaymentDetails
public AccountSessionCreateParams.Components.Builder setPaymentDetails(AccountSessionCreateParams.Components.PaymentDetails paymentDetails) Configuration for the payment details embedded component. -
setPayments
public AccountSessionCreateParams.Components.Builder setPayments(AccountSessionCreateParams.Components.Payments payments) Configuration for the payments embedded component. -
setPayouts
public AccountSessionCreateParams.Components.Builder setPayouts(AccountSessionCreateParams.Components.Payouts payouts) Configuration for the payouts embedded component.
-