Package com.stripe.param
Class AccountSessionCreateParams.Components.Balances.Features.Builder
java.lang.Object
com.stripe.param.AccountSessionCreateParams.Components.Balances.Features.Builder
- Enclosing class:
- AccountSessionCreateParams.Components.Balances.Features
-
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.setEditPayoutSchedule
(Boolean editPayoutSchedule) Whether to allow payout schedule to be changed.setExternalAccountCollection
(Boolean externalAccountCollection) Whether to allow platforms to control bank account collection for their connected accounts.setInstantPayouts
(Boolean instantPayouts) Whether to allow creation of instant payouts.setStandardPayouts
(Boolean standardPayouts) Whether to allow creation of standard payouts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setEditPayoutSchedule
public AccountSessionCreateParams.Components.Balances.Features.Builder setEditPayoutSchedule(Boolean editPayoutSchedule) Whether to allow payout schedule to be changed. Defaulttrue
when Stripe owns Loss Liability, defaultfalse
otherwise. -
setExternalAccountCollection
public AccountSessionCreateParams.Components.Balances.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.Balances.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.Balances.Features.extraParams
for the field documentation. -
putAllExtraParam
public AccountSessionCreateParams.Components.Balances.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.Balances.Features.extraParams
for the field documentation. -
setInstantPayouts
public AccountSessionCreateParams.Components.Balances.Features.Builder setInstantPayouts(Boolean instantPayouts) Whether to allow creation of instant payouts. Defaulttrue
when Stripe owns Loss Liability, defaultfalse
otherwise. -
setStandardPayouts
public AccountSessionCreateParams.Components.Balances.Features.Builder setStandardPayouts(Boolean standardPayouts) Whether to allow creation of standard payouts. Defaulttrue
when Stripe owns Loss Liability, defaultfalse
otherwise.
-