Wactorz JS
    Preparing search index...

    Interface HAEntity

    HAClient — Minimal Home Assistant WebSocket API client.

    Handles authentication and fetching the initial state of entities. Can be extended for real-time state updates (subscriptions) and service calls.

    interface HAEntity {
        attributes: {
            device_class?: string;
            entity_picture?: string;
            friendly_name?: string;
            icon?: string;
            supported_features?: number;
            unit_of_measurement?: string;
            [key: string]: any;
        };
        entity_id: string;
        last_changed: string;
        last_updated: string;
        state: string;
    }
    Index

    Properties

    attributes: {
        device_class?: string;
        entity_picture?: string;
        friendly_name?: string;
        icon?: string;
        supported_features?: number;
        unit_of_measurement?: string;
        [key: string]: any;
    }
    entity_id: string
    last_changed: string
    last_updated: string
    state: string