Review data shared between created and read reviews.

interface WKReviewData {
    assignment_id: number;
    created_at: WKDatableString;
    ending_srs_stage: NumberRange<1, 9>;
    incorrect_meaning_answers: number;
    incorrect_reading_answers: number;
    spaced_repetition_system_id: number;
    starting_srs_stage: NumberRange<1, 8>;
    subject_id: number;
}

Properties

assignment_id: number

Unique identifier of the associated assignment.

created_at: WKDatableString

Timestamp when the review was created.

ending_srs_stage: NumberRange<1, 9>

The SRS stage interval calculated from the number of correct and incorrect answers, with valid values ranging from 1 to 9.

incorrect_meaning_answers: number

The number of times the user has answered the meaning incorrectly.

incorrect_reading_answers: number

The number of times the user has answered the reading incorrectly.

spaced_repetition_system_id: number

Unique identifier of the associated spaced_repetition_system.

starting_srs_stage: NumberRange<1, 8>

The starting SRS stage interval, with valid values ranging from 1 to 8.

subject_id: number

Unique identifier of the associated subject.