conogram/entities/bot_command_scope_all_group_chats.rs
1use serde::{Deserialize, Serialize};
2
3/// Represents the [scope](https://core.telegram.org/bots/api/#botcommandscope) of bot commands, covering all group and supergroup chats.
4///
5/// API Reference: [link](https://core.telegram.org/bots/api/#botcommandscopeallgroupchats)
6#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
7pub struct BotCommandScopeAllGroupChats {}
8
9// Divider: all content below this line will be preserved after code regen