Package com.stripe.param
Class AccountSessionCreateParams.Components.NotificationBanner.Features.Builder
java.lang.Object
com.stripe.param.AccountSessionCreateParams.Components.NotificationBanner.Features.Builder
- Enclosing class:
- AccountSessionCreateParams.Components.NotificationBanner.Features
public static class AccountSessionCreateParams.Components.NotificationBanner.Features.Builder
extends Object
-
Constructor Summary
-
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.setExternalAccountCollection
(Boolean externalAccountCollection) Whether to allow platforms to control bank account collection for their connected accounts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setExternalAccountCollection
public AccountSessionCreateParams.Components.NotificationBanner.Features.Builder setExternalAccountCollection(Boolean externalAccountCollection) Whether to allow platforms to control bank account collection for their connected accounts. This feature can only be false for custom accounts (or accounts where the platform is compliance owner). Otherwise, bank account collection is determined by compliance requirements. -
putExtraParam
public AccountSessionCreateParams.Components.NotificationBanner.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.NotificationBanner.Features.extraParams
for the field documentation. -
putAllExtraParam
public AccountSessionCreateParams.Components.NotificationBanner.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.NotificationBanner.Features.extraParams
for the field documentation.
-