CustomerMeter
March 27, 2026 ยท View on GitHub
An active customer meter, with current consumed and credited units.
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
id | str | :heavy_check_mark: | The ID of the object. | |
created_at | date | :heavy_check_mark: | Creation timestamp of the object. | |
modified_at | date | :heavy_check_mark: | Last modification timestamp of the object. | |
customer_id | str | :heavy_check_mark: | The ID of the customer. | 992fae2a-2a17-4b7a-8d9e-e287cf90131b |
meter_id | str | :heavy_check_mark: | The ID of the meter. | d498a884-e2cd-4d3e-8002-f536468a8b22 |
consumed_units | float | :heavy_check_mark: | The number of consumed units. | 25 |
credited_units | int | :heavy_check_mark: | The number of credited units. | 100 |
balance | float | :heavy_check_mark: | The balance of the meter, i.e. the difference between credited and consumed units. | 75 |
customer | models.Customer | :heavy_check_mark: | N/A | |
meter | models.Meter | :heavy_check_mark: | N/A |