pub struct InternalLinkTypeBotStartInGroup {
pub bot_username: String,
pub start_parameter: String,
pub administrator_rights: Option<ChatAdministratorRights>,
}
Expand description
The link is a link to a Telegram bot, which is supposed to be added to a group chat. Call searchPublicChat with the given bot username, check that the user is a bot and can be added to groups, ask the current user to select a basic group or a supergroup chat to add the bot to, taking into account that bots can be added to a public supergroup only by administrators of the supergroup. If administrator rights are provided by the link, call getChatMember to receive the current bot rights in the chat and if the bot already is an administrator, check that the current user can edit its administrator rights, combine received rights with the requested administrator rights, show confirmation box to the user, and call setChatMemberStatus with the chosen chat and confirmed administrator rights. Before call to setChatMemberStatus it may be required to upgrade the chosen basic group chat to a supergroup chat. Then, if start_parameter isn’t empty, call sendBotStartMessage with the given start parameter and the chosen chat; otherwise, just send /start message with bot’s username added to the chat.
Fields§
§bot_username: String
Username of the bot
start_parameter: String
The parameter to be passed to sendBotStartMessage
administrator_rights: Option<ChatAdministratorRights>
Expected administrator rights for the bot; may be null
Trait Implementations§
Source§impl Clone for InternalLinkTypeBotStartInGroup
impl Clone for InternalLinkTypeBotStartInGroup
Source§fn clone(&self) -> InternalLinkTypeBotStartInGroup
fn clone(&self) -> InternalLinkTypeBotStartInGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for InternalLinkTypeBotStartInGroup
impl Default for InternalLinkTypeBotStartInGroup
Source§fn default() -> InternalLinkTypeBotStartInGroup
fn default() -> InternalLinkTypeBotStartInGroup
Source§impl<'de> Deserialize<'de> for InternalLinkTypeBotStartInGroup
impl<'de> Deserialize<'de> for InternalLinkTypeBotStartInGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for InternalLinkTypeBotStartInGroup
impl PartialEq for InternalLinkTypeBotStartInGroup
Source§fn eq(&self, other: &InternalLinkTypeBotStartInGroup) -> bool
fn eq(&self, other: &InternalLinkTypeBotStartInGroup) -> bool
self
and other
values to be equal, and is used by ==
.