Skip to main content

teloxide_core_ng/payloads/
pin_chat_message.rs

1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{BusinessConnectionId, MessageId, Recipient, True};
6
7impl_payload! {
8    /// Use this method to pin a message in a group, a supergroup, or a channel. The bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' admin right in the supergroup or 'can_edit_messages' admin right in the channel. Returns _True_ on success.
9    #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
10    pub PinChatMessage (PinChatMessageSetters) => True {
11        required {
12            /// Unique identifier for the target chat or username of the target channel (in the format `@channelusername`)
13            pub chat_id: Recipient [into],
14            /// Identifier of a message to pin
15            #[serde(flatten)]
16            pub message_id: MessageId,
17        }
18        optional {
19            /// Pass True, if it is not necessary to send a notification to all chat members about the new pinned message. Notifications are always disabled in channels.
20            pub disable_notification: bool,
21            /// Unique identifier of the business connection
22            pub business_connection_id: BusinessConnectionId,
23        }
24    }
25}