W3Booster SDK 2.0.0
    Preparing search index...

    Interface Match

    interface Match {
        broadcasterPlayerId?: string;
        endedAt?: string;
        gameTime: number;
        id: string;
        isObserver?: boolean;
        isReforged?: boolean;
        isReplay?: boolean;
        map?: string;
        mode: string;
        paused?: boolean;
        realBroadcasterPlayerId?: string;
        realm?: string;
        result?: { outcome: "won" | "lost"; playerId: string };
        startedAt?: string;
        status: MatchStatus;
    }
    Index
    broadcasterPlayerId?: string
    endedAt?: string

    Authoritative ISO-8601 completion time when supplied by the platform.

    gameTime: number

    Elapsed in-game time in whole seconds, excluding paused time.

    id: string

    Stable match identity. Empty only while status is none.

    isObserver?: boolean
    isReforged?: boolean
    isReplay?: boolean
    map?: string

    Human-readable, display-ready map name. Producers decode transport escaping before SDK delivery.

    mode: string
    paused?: boolean
    realBroadcasterPlayerId?: string
    realm?: string
    result?: { outcome: "won" | "lost"; playerId: string }

    Recorder-confirmed outcome for the actual local player; absent when unknown, observing, or replaying.

    startedAt?: string

    ISO-8601 timestamp serialized by the API.

    status: MatchStatus