# `PolarExpress.Schemas.CustomerWallet`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/customer_wallet.ex#L2)

CustomerWallet

A wallet represents your balance with an organization.

You can top-up your wallet and use the balance to pay for usage.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerWallet{
  balance: integer() | nil,
  created_at: DateTime.t() | nil,
  currency: String.t() | nil,
  customer_id: String.t() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil
}
```

* `balance` - The current balance of the wallet, in cents.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `currency` - The currency of the wallet.
* `customer_id` - The ID of the customer that owns the wallet. Format: uuid4.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.

# `schema_name`

---

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