# The Cash balance object

### The Cash balance object

```json
{
  "object": "cash_balance",
  "available": {
    "eur": 10000
  },
  "customer": "cus_OaCLf8Fi1nbFpJ",
  "livemode": false,
  "settings": {
    "reconciliation_mode": "automatic",
    "using_merchant_default": true
  }
}
```

## Attributes

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

- `available` (map, nullable)
  A hash of all cash balances available to this customer. You cannot delete a customer with any cash balances, even if the balance is 0. Amounts are represented in the [smallest currency unit](https://docs.stripe.com/currencies.md#zero-decimal).

- `customer` (string)
  The ID of the customer whose cash balance this object represents.

- `customer_account` (string, nullable)
  The ID of an Account representing a customer whose cash balance this object represents.

- `livemode` (boolean)
  If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.

- [`settings`](https://docs.stripe.com/api/cash_balance/object.md?query=settings) (object)
  A hash of settings for this cash balance.
