tibber-api
Version:
Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.
16 lines (15 loc) • 596 B
TypeScript
import { PriceRatingEntry } from "./PriceRatingEntry";
export interface PriceRatingType {
/** Lowest Nordpool spot price over the time period */
minEnergy: number;
/** Highest Nordpool spot price over the time period */
maxEnergy: number;
/** Lowest total price (incl. tax) over the time period */
minTotal: number;
/** Highest total price (incl. tax) over the time period */
maxTotal: number;
/** The price currency */
currency: string;
/** The individual price entries aggregated by hourly/daily/monthly values} */
entries: PriceRatingEntry[];
}