@bachman-dev/wanikani-api-types - v2.0.0
    Preparing search index...

    Interface VoiceActor

    Available voice actors used for vocabulary reading pronunciation audio.

    interface VoiceActor {
        data: {
            created_at: DatableString;
            description: string;
            gender: "female" | "male";
            name: string;
        };
        data_updated_at: DatableString;
        id: number;
        object: "voice_actor";
        url: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: {
        created_at: DatableString;
        description: string;
        gender: "female" | "male";
        name: string;
    }

    Data for the returned voice actor.

    Type declaration

    • created_at: DatableString

      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.

    data_updated_at: DatableString

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

    id: number

    A unique number identifying the voice actor.

    object: "voice_actor"

    The kind of object returned.

    url: string

    The URL of the requested resource.