Interface Multiplayer

interface Multiplayer {
    accuracy: number;
    beatmap_id: number;
    ended_at: Date;
    id: number;
    max_combo: number;
    maximum_statistics: Score.Statistics;
    mods: Mod[];
    passed: boolean;
    playlist_item_id: number;
    pp: null | number;
    rank: string;
    replay: boolean;
    room_id: number;
    ruleset_id: Ruleset;
    started_at: Date;
    statistics: Score.Statistics;
    total_score: number;
    type: string;
    user: WithCountryCover;
    user_id: number;
}

Hierarchy

  • Bare
    • Multiplayer

Properties

accuracy: number

In a format where 96.40% would be 0.9640 (and no number afterwards)

beatmap_id: number
ended_at: Date
id: number
max_combo: number
maximum_statistics: Score.Statistics
mods: Mod[]
passed: boolean
playlist_item_id: number
pp: null | number
rank: string

Also known as a grade, for example this is X (SS) if accuracy is 1 (100.00%)

replay: boolean

Can this score's replay be downloaded from the website?

room_id: number
ruleset_id: Ruleset
started_at: Date
statistics: Score.Statistics
total_score: number
type: string
user_id: number

The ID of the user who made the score