Interface MessageGameScore

A new high score was achieved in a game. Subtype of MessageContent.

interface MessageGameScore {
    @type: "messageGameScore";
    game_id: string;
    game_message_id: number;
    score: number;
}

Properties

@type: "messageGameScore"
game_id: string

Identifier of the game; may be different from the games presented in the message with the game.

game_message_id: number

Identifier of the message with the game, can be an identifier of a deleted message.

score: number

New score.