mqtt2ha
    Preparing search index...

    Interface UpdatePayload

    The JSON payload published on an update entity's state topic.

    interface UpdatePayload {
        entity_picture?: string;
        in_progress?: boolean;
        installed_version: string;
        latest_version?: string;
        release_summary?: string;
        release_url?: string;
        title?: string;
        update_percentage?: number | null;
    }
    Index
    entity_picture?: string

    URL of an image representing the update.

    in_progress?: boolean

    Whether the update is currently in progress, or a percentage (0-100) of completion.

    installed_version: string

    The currently installed version.

    latest_version?: string

    The latest available version. When omitted, Home Assistant assumes it is equal to the installed version.

    release_summary?: string

    Summary of the release notes or changelog.

    release_url?: string

    URL to the full release notes of the latest version.

    title?: string

    Title of the software or firmware update.

    update_percentage?: number | null

    The current progress of an in-progress update, as a percentage (0-100), or null when not in progress.