node-tado-client
    Preparing search index...

    Type Alias EnergyIQMonthOverview

    type EnergyIQMonthOverview = {
        consumptionPerDate: {
            consumption: number;
            costInCents: number;
            date: string;
        }[];
        endDate: string;
        startDate: string;
        totalConsumption: number;
        totalCostInCents: number;
    }
    Index

    Properties

    consumptionPerDate: { consumption: number; costInCents: number; date: string }[]
    endDate: string
    startDate: string
    totalConsumption: number
    totalCostInCents: number