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

    Interface WKReviewStatisticData

    Data for a review statistic returned from the WaniKani API.

    interface WKReviewStatisticData {
        created_at: WKDatableString;
        hidden: boolean;
        meaning_correct: number;
        meaning_current_streak: number;
        meaning_incorrect: number;
        meaning_max_streak: number;
        percentage_correct: number;
        reading_correct: number;
        reading_current_streak: number;
        reading_incorrect: number;
        reading_max_streak: number;
        subject_id: number;
        subject_type: WKSubjectType;
    }
    Index

    Properties

    created_at: WKDatableString

    Timestamp when the review statistic was created.

    hidden: boolean

    Indicates if the associated subject has been hidden, preventing it from appearing in lessons or reviews.

    meaning_correct: number

    Total number of correct answers submitted for the meaning of the associated subject.

    meaning_current_streak: number

    The current, uninterrupted series of correct answers given for the meaning of the associated subject.

    meaning_incorrect: number

    Total number of incorrect answers submitted for the meaning of the associated subject.

    meaning_max_streak: number

    The longest, uninterrupted series of correct answers ever given for the meaning of the associated subject.

    percentage_correct: number

    The overall correct answer rate by the user for the subject, including both meaning and reading.

    reading_correct: number

    Total number of correct answers submitted for the reading of the associated subject.

    reading_current_streak: number

    The current, uninterrupted series of correct answers given for the reading of the associated subject.

    reading_incorrect: number

    Total number of incorrect answers submitted for the reading of the associated subject.

    reading_max_streak: number

    The longest, uninterrupted series of correct answers ever given for the reading of the associated subject.

    subject_id: number

    Unique identifier of the associated subject.

    subject_type: WKSubjectType

    The type of the associated subject, one of: kanji, radical, or vocabulary.