# account\_payout\_settings

From **Stripe API**.

- Type: `object`

## Properties

### `debit_negative_balances`

- Required: true
- Type: `boolean`

A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See our [Understanding Connect Account Balances](https://stripe.com/docs/connect/account-balances) documentation for details. Default value is `false` for Custom accounts, otherwise `true`.

### `schedule`

- Required: true
- Type: `object`

### `statement_descriptor`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

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.

## JSON Schema

```json
{"properties":{"debit_negative_balances":{"description":"A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See our [Understanding Connect Account Balances](https://stripe.com/docs/connect/account-balances) documentation for details. Default value is `false` for Custom accounts, otherwise `true`.","type":"boolean"},"schedule":{"$ref":"#/components/schemas/transfer_schedule"},"statement_descriptor":{"description":"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.","maxLength":5000,"nullable":true,"type":"string"}},"required":["debit_negative_balances","schedule"],"title":"AccountPayoutSettings","type":"object","x-expandableFields":["schedule"]}
```
