# The Balance Setting object

### The Balance Setting object

```json
{
  "object": "balance_settings",
  "payments": {
    "debit_negative_balances": true,
    "payouts": {
      "automatic_transfer_rules_by_currency": {
        "usd": [
          {
            "type": "transfer_all",
            "payout_method": "fa_1ABC"
          }
        ]
      },
      "minimum_balance_by_currency": {
        "usd": 1500,
        "cad": 8000
      },
      "schedule": {
        "interval": "weekly",
        "weekly_payout_days": [
          "monday",
          "wednesday"
        ]
      },
      "statement_descriptor": null,
      "status": "enabled"
    },
    "settlement_timing": {
      "delay_days_override": 3,
      "delay_days": 3
    }
  }
}
```

## Attributes

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- [`payments`](https://docs.stripe.com/api/balance-settings/object.md?query=payments) (object)
  Settings that apply to the [Payments Balance](https://docs.stripe.com/api/balance.md).
