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

    Interface WKReview

    Reviews log all the correct and incorrect answers provided through the 'Reviews' section of WaniKani. Review records are created when a user answers all the parts of a subject correctly once; some subjects have both meaning or reading parts, and some only have one or the other. Note that reviews are not created for the quizzes in lessons.

    interface WKReview {
        data: WKReviewData;
        data_updated_at: WKDatableString;
        id: number;
        object: "review";
        url: string;
        code?: undefined;
        error?: undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Data for the returned review.

    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.

    object: "review"

    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.