The payload sent to the WaniKani API when creating new study materials.

interface WKStudyMaterialCreatePayload {
    subject_id: number;
    meaning_note?: null | string;
    meaning_synonyms?: string[];
    reading_note?: null | string;
}

Hierarchy (view full)

Properties

subject_id: number

Unique identifier of the associated subject.

meaning_note?: null | string

Free form note related to the meaning(s) of the associated subject.

meaning_synonyms?: string[]

Synonyms for the meaning of the subject. These are used as additional correct answers during reviews.

reading_note?: null | string

Free form note related to the reading(s) of the associated subject.