Interface GameChatLine

interface GameChatLine {
    body: string | AnalysisComment | ReviewComment;
    channel: string;
    chat_id: string;
    date: number;
    from?: number;
    move_number: number;
    moves?: string;
    player_id: number;
    username?: string;
}

Properties

channel: string
chat_id: string
date: number
from?: number
move_number: number
moves?: string
player_id: number
username?: string