MELCloud & MELCloud Home API for Node.js - v48.2.0
    Preparing search index...

    Interface ClassicErrorLogQuery

    Query parameters for paginating the error log.

    interface ClassicErrorLogQuery {
        from?: string;
        offset?: number;
        period?: number;
        to?: string;
    }
    Index
    from?: string

    Start date in ISO 8601 format. When set, the query is pinned to that single day; offset is ignored and period only shapes nextFromDate for chained pagination.

    offset?: number

    Page offset, in period-sized windows. 0 (default) is the most recent window; 1 is the previous, etc. Pages are separated by a one-day boundary so consecutive pages don't overlap.

    period?: number

    Number of days per page. Defaults to 1.

    to?: string

    End date in ISO 8601 format. Defaults to now.