Package com.stripe.param
Class AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder
java.lang.Object
com.stripe.param.AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder
- Enclosing class:
- AccountSessionCreateParams.Components.IssuingCardsList.Features
public static class AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder
extends Object
-
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.setCardholderManagement
(Boolean cardholderManagement) Whether to allow cardholder management features.setCardManagement
(Boolean cardManagement) Whether to allow card management features.setCardSpendDisputeManagement
(Boolean cardSpendDisputeManagement) Whether to allow card spend dispute management features.setDisableStripeUserAuthentication
(Boolean disableStripeUserAuthentication) Whether Stripe user authentication is disabled.setSpendControlManagement
(Boolean spendControlManagement) Whether to allow spend control management features.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCardManagement
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder setCardManagement(Boolean cardManagement) Whether to allow card management features. -
setCardSpendDisputeManagement
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder setCardSpendDisputeManagement(Boolean cardSpendDisputeManagement) Whether to allow card spend dispute management features. -
setCardholderManagement
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder setCardholderManagement(Boolean cardholderManagement) Whether to allow cardholder management features. -
setDisableStripeUserAuthentication
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder setDisableStripeUserAuthentication(Boolean disableStripeUserAuthentication) Whether Stripe user authentication is disabled. This value can only betrue
for accounts wherecontroller.requirement_collection
isapplication
for the account. The default value is the opposite of theexternal_account_collection
value. For example, if you don't setexternal_account_collection
, it defaults totrue
anddisable_stripe_user_authentication
defaults tofalse
. -
putExtraParam
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder putExtraParam(String key, 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. SeeAccountSessionCreateParams.Components.IssuingCardsList.Features.extraParams
for the field documentation. -
putAllExtraParam
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder putAllExtraParam(Map<String, 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. SeeAccountSessionCreateParams.Components.IssuingCardsList.Features.extraParams
for the field documentation. -
setSpendControlManagement
public AccountSessionCreateParams.Components.IssuingCardsList.Features.Builder setSpendControlManagement(Boolean spendControlManagement) Whether to allow spend control management features.
-