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

CustomerStateMeter

An active meter for a customer, with latest consumed and credited units.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.CustomerStateMeter{
  balance: float() | nil,
  consumed_units: float() | nil,
  created_at: DateTime.t() | nil,
  credited_units: integer() | nil,
  id: String.t() | nil,
  meter_id: String.t() | nil,
  modified_at: DateTime.t() | nil
}
```

* `balance` - The balance of the meter, i.e. the difference between credited and consumed units.
* `consumed_units` - The number of consumed units.
* `created_at` - Creation timestamp of the object. Format: date-time.
* `credited_units` - The number of credited units.
* `id` - The ID of the object. Format: uuid4.
* `meter_id` - The ID of the meter. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.

# `schema_name`

---

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