sense-js-sdk
    Preparing search index...

    Interface TrendsDevice

    Represents a Sense-monitored device with trend-related data and metadata.

    interface TrendsDevice {
        avgw: number;
        cost_history: number[];
        given_location?: string;
        given_make?: string;
        given_model?: string;
        history: number[];
        icon: string;
        id: string;
        location?: string;
        make?: string;
        model?: string;
        monitor_id?: number;
        name: string;
        pct: number;
        tags: DeviceTags;
        total_cost: number;
        total_kwh: number;
    }
    Index

    Properties

    avgw: number
    cost_history: number[]
    given_location?: string
    given_make?: string
    given_model?: string
    history: number[]
    icon: string
    id: string
    location?: string
    make?: string
    model?: string
    monitor_id?: number
    name: string
    pct: number
    total_cost: number
    total_kwh: number