The common properties across all Reports from the WaniKani API

interface WKReport {
    data: WKSummaryData;
    data_updated_at: WKDatableString;
    object: "report";
    url: string;
    code?: undefined;
    error?: undefined;
}

Hierarchy (view full)

Properties

The report's data, dependent on the particular report.

data_updated_at: WKDatableString

The last time the report was updated.

object: "report"

The kind of object returned.

url: string

The URL of the requested report.

code?: undefined

A report will never have a code property.

error?: undefined

A report will never have an error property.