Usage
A Usage is a record of the amount of energy used in a specific time period. A usage has a cost associated with it. This is the cost of the energy used in the time period times the price of the energy (from your contract).
type Usage {
id: UUID!
start: Time!
type: UsageType!
amount: Decimal!
}
Fields
Usage.id ● UUID! non-null scalar
The unique identifier of the usage.
Usage.start ● Time! non-null scalar
The start time of the usage.
Usage.type ● UsageType! non-null enum
The type of usage.
Usage.amount ● Decimal! non-null scalar
The amount of energy used.
Member Of
MeteringPoint object