Interface for interacting with the reporting system. Provides functionality to retrieve reports in JSON format based on a query.

interface Reporting {
    GetJsonReport(query: object): string;
}

Methods

  • Gets the report in JSON format based on the provided query.

    Parameters

    • query: object

      The query object, which contains question ID and filter details.

    Returns string

    The report in JSON format.