conogram/entities/menu_button_commands.rs
1use serde::{Deserialize, Serialize};
2
3/// Represents a menu button, which opens the bot's list of commands.
4///
5/// API Reference: [link](https://core.telegram.org/bots/api/#menubuttoncommands)
6#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
7pub struct MenuButtonCommands {}
8
9// Divider: all content below this line will be preserved after code regen