Agenda - v6.2.3
    Preparing search index...

    Interface JobLogQueryResult

    Result of a log query including entries and total count (for pagination).

    interface JobLogQueryResult {
        entries: JobLogEntry[];
        total: number;
    }
    Index

    Properties

    Properties

    entries: JobLogEntry[]

    The log entries matching the query

    total: number

    Total number of entries matching the query (ignoring limit/offset)