* A button with a game that sends a special callback query to a bot. This button must be in the first column and row of the keyboard and can be attached only to a message with content of the type messageGame.
13
*/
14
class InlineKeyboardButtonTypeCallbackGame extends InlineKeyboardButtonType
15
{
16
public const TYPE_NAME = 'inlineKeyboardButtonTypeCallbackGame';
17
18
public function __construct()
19
{
20
parent::__construct();
21
}
22
23
public static function fromArray(array $array): InlineKeyboardButtonTypeCallbackGame