Interface PushMessageContentGame

A message with a game. Subtype of PushMessageContent.

interface PushMessageContentGame {
    @type: "pushMessageContentGame";
    is_pinned?: boolean;
    title: string;
}

Properties

@type: "pushMessageContentGame"
is_pinned?: boolean

True, if the message is a pinned message with the specified content.

title: string

Game title, empty for pinned game message.