# `Stripe.Resources.Account.Settings.Payouts`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/account.ex#L1073)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Account.Settings.Payouts{
  debit_negative_balances: boolean() | nil,
  schedule: Stripe.Resources.Account.Settings.Payouts.Schedule.t() | nil,
  statement_descriptor: String.t() | nil
}
```

* `debit_negative_balances` - A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See [Understanding Connect account balances](https://stripe.com/connect/account-balances) for details. The default value is `false` when [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `application`, which includes Custom accounts, otherwise `true`.
* `schedule`
* `statement_descriptor` - 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. Max length: 5000. Nullable.

---

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