Authoritative location of a player.

interface MultiplayerPresence {
    display_name?: null | string;
    expires_at?: null | string;
    grid_cell?: null | string;
    heading?: null | number;
    id: string;
    instance_id?: null | string;
    last_heartbeat_at?: null | string;
    metadata: MultiplayerMetadata;
    party_id?: null | string;
    player_id: string;
    pos_x?: null | number;
    pos_y?: null | number;
    pos_z?: null | number;
    realm_id?: null | string;
    rich_status?: null | string;
    status: MultiplayerPresenceStatus;
    title_id: string;
    user_id?: null | string;
    zone_id?: null | string;
}

Properties

display_name?: null | string
expires_at?: null | string
grid_cell?: null | string
heading?: null | number
id: string
instance_id?: null | string
last_heartbeat_at?: null | string
party_id?: null | string
player_id: string
pos_x?: null | number
pos_y?: null | number
pos_z?: null | number
realm_id?: null | string
rich_status?: null | string
title_id: string
user_id?: null | string
zone_id?: null | string

Generated using TypeDoc