Package com.stripe.param
Class AccountCreateParams.Settings.Payouts.Builder
java.lang.Object
com.stripe.param.AccountCreateParams.Settings.Payouts.Builder
- Enclosing class:
- AccountCreateParams.Settings.Payouts
-
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.setDebitNegativeBalances
(Boolean debitNegativeBalances) A Boolean indicating whether Stripe should try to reclaim negative balances from an attached bank account.Details on when funds from charges are available, and when they are paid out to an external account.setStatementDescriptor
(String statementDescriptor) The text that appears on the bank account statement for payouts.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setDebitNegativeBalances
public AccountCreateParams.Settings.Payouts.Builder setDebitNegativeBalances(Boolean debitNegativeBalances) A Boolean indicating whether Stripe should try to reclaim negative balances from an attached bank account. For details, see Understanding Connect Account Balances. -
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.Settings.Payouts.extraParams
for 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.Settings.Payouts.extraParams
for the field documentation. -
setSchedule
public AccountCreateParams.Settings.Payouts.Builder setSchedule(AccountCreateParams.Settings.Payouts.Schedule schedule) Details on when funds from charges are available, and when they are paid out to an external account. For details, see our Setting Bank and Debit Card Payouts documentation. -
setStatementDescriptor
public AccountCreateParams.Settings.Payouts.Builder setStatementDescriptor(String statementDescriptor) The text that appears on the bank account statement for payouts. If not set, this defaults to the platform's bank descriptor as set in the Dashboard.
-