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

    Interface WKStudyMaterial

    Study materials store user-specific notes and synonyms for a given subject. The records are created as soon as the user enters any study information.

    interface WKStudyMaterial {
        data: WKStudyMaterialData;
        data_updated_at: WKDatableString;
        id: number;
        object: "study_material";
        url: string;
        code?: undefined;
        error?: undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Data for the returned study material.

    data_updated_at: WKDatableString

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

    id: number

    A unique number identifying the study material.

    object: "study_material"

    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.