# `Stripe.Params.BalanceSettingsUpdateParams.Payments.Payouts.Schedule`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/balance_settings_update_params.ex#L46)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.BalanceSettingsUpdateParams.Payments.Payouts.Schedule{
  interval: String.t() | nil,
  monthly_payout_days: [integer()] | nil,
  weekly_payout_days: [String.t()] | nil
}
```

* `interval` - How frequently available funds are paid out. One of: `daily`, `manual`, `weekly`, or `monthly`. Default is `daily`. Possible values: `daily`, `manual`, `monthly`, `weekly`.
* `monthly_payout_days` - The days of the month when available funds are paid out, specified as an array of numbers between 1--31. Payouts nominally scheduled between the 29th and 31st of the month are instead sent on the last day of a shorter month. Required and applicable only if `interval` is `monthly`.
* `weekly_payout_days` - The days of the week when available funds are paid out, specified as an array, e.g., [`monday`, `tuesday`]. Required and applicable only if `interval` is `weekly`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
