interface MultiplayerMatchmakingTicket {
    assignment?: null | MultiplayerMetadata;
    attributes: MultiplayerMetadata;
    expires_at?: null | string;
    id: string;
    match_id?: null | string;
    matched_at?: null | string;
    party: string[];
    player_id: string;
    queue: string;
    queued_at?: null | string;
    region?: null | string;
    skill?: null | number;
    status: MultiplayerMatchmakingStatus;
    title_id: string;
    user_id?: null | string;
}

Properties

assignment?: null | MultiplayerMetadata
expires_at?: null | string
id: string
match_id?: null | string
matched_at?: null | string
party: string[]
player_id: string
queue: string
queued_at?: null | string
region?: null | string
skill?: null | number
title_id: string
user_id?: null | string

Generated using TypeDoc