Data for a voice actor returned from the WaniKani API.

interface WKVoiceActorData {
    created_at: WKDatableString;
    description: string;
    gender: "female" | "male";
    name: string;
}

Properties

created_at: WKDatableString

Timestamp for when the voice actor was added to WaniKani.

description: string

Details about the voice actor.

gender: "female" | "male"

The voice actor's gender, either male or female.

name: string

The voice actor's name.