Users can reset their progress back to any level at or below their current level. When they reset to a particular level, all of the assignments and review_statistics at that level or higher are set back to their default state.

Resets contain information about when those resets happen, the starting level, and the target level.

interface WKReset {
    data: WKResetData;
    data_updated_at: WKDatableString;
    id: number;
    object: "reset";
    url: string;
    code?: undefined;
    error?: undefined;
}

Hierarchy (view full)

Properties

Data for the returned reset.

data_updated_at: WKDatableString

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

id: number

A unique number identifying the reset.

object: "reset"

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.