Package com.stripe.param
Class BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder
java.lang.Object
com.stripe.param.BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder
- Enclosing class:
- BalanceSettingsUpdateParams.Payments.Payouts.Schedule
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddAllMonthlyPayoutDay
(List<Long> elements) Add all elements to `monthlyPayoutDays` list.addAllWeeklyPayoutDay
(List<BalanceSettingsUpdateParams.Payments.Payouts.Schedule.WeeklyPayoutDay> elements) Add all elements to `weeklyPayoutDays` list.addMonthlyPayoutDay
(Long element) Add an element to `monthlyPayoutDays` list.Add an element to `weeklyPayoutDays` list.build()
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.How frequently available funds are paid out.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
putExtraParam
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.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. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.extraParams
for the field documentation. -
putAllExtraParam
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.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. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.extraParams
for the field documentation. -
setInterval
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder setInterval(BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Interval interval) How frequently available funds are paid out. One of:daily
,manual
,weekly
, ormonthly
. Default isdaily
. -
addMonthlyPayoutDay
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder addMonthlyPayoutDay(Long element) Add an element to `monthlyPayoutDays` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.monthlyPayoutDays
for the field documentation. -
addAllMonthlyPayoutDay
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder addAllMonthlyPayoutDay(List<Long> elements) Add all elements to `monthlyPayoutDays` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.monthlyPayoutDays
for the field documentation. -
addWeeklyPayoutDay
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder addWeeklyPayoutDay(BalanceSettingsUpdateParams.Payments.Payouts.Schedule.WeeklyPayoutDay element) Add an element to `weeklyPayoutDays` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.weeklyPayoutDays
for the field documentation. -
addAllWeeklyPayoutDay
public BalanceSettingsUpdateParams.Payments.Payouts.Schedule.Builder addAllWeeklyPayoutDay(List<BalanceSettingsUpdateParams.Payments.Payouts.Schedule.WeeklyPayoutDay> elements) Add all elements to `weeklyPayoutDays` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeBalanceSettingsUpdateParams.Payments.Payouts.Schedule.weeklyPayoutDays
for the field documentation.
-