@bachman-dev/wanikani-api-types - v1.8.0
    Preparing search index...

    Interface WKReviewStatistic

    Review statistics summarize the activity recorded in reviews. They contain sum the number of correct and incorrect answers for both meaning and reading. They track current and maximum streaks of correct answers. They store the overall percentage of correct answers versus total answers.

    A review statistic is created when the user has done their first review on the related subject.

    interface WKReviewStatistic {
        data: WKReviewStatisticData;
        data_updated_at: WKDatableString;
        id: number;
        object: "review_statistic";
        url: string;
        code?: undefined;
        error?: undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Data for the returned review statistic.

    data_updated_at: WKDatableString

    For a resource, this is the last time that particular resource was updated.

    id: number

    A unique number identifying the review statistic.

    object: "review_statistic"

    The kind of object returned.

    url: string

    The URL of the requested resource.

    code?: undefined

    A resource will never have a code property.

    error?: undefined

    A resource will never have an error property.