# `Stripe.Resources.BalanceSettings.Payments.Payouts.Schedule`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/balance_settings.ex#L57)

Nested struct within the parent resource.

# `t`

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

* `interval` - How frequently funds will be paid out. One of `manual` (payouts only created via API call), `daily`, `weekly`, or `monthly`. Possible values: `daily`, `manual`, `monthly`, `weekly`. Nullable.
* `monthly_payout_days` - The day of the month funds will be paid out. Only shown if `interval` is monthly. Payouts scheduled between the 29th and 31st of the month are sent on the last day of shorter months.
* `weekly_payout_days` - The days of the week when available funds are paid out, specified as an array, for example, [`monday`, `tuesday`]. Only shown if `interval` is weekly.

---

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