teloxide_core/payloads/
create_forum_topic.rs

1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{CustomEmojiId, ForumTopic, Recipient, Rgb};
6
7impl_payload! {
8    /// Use this method to create a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the _can\_manage\_topics_ administrator rights. Returns information about the created topic as a `ForumTopic` object.
9    #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
10    pub CreateForumTopic (CreateForumTopicSetters) => ForumTopic {
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            /// Topic name, 1-128 characters
15            pub name: String [into],
16        }
17        optional {
18            /// Color of the topic icon in RGB format. Currently, must be one of 7322096 (`0x6FB9F0`), 16766590 (`0xFFD67E`), 13338331 (`0xCB86DB`), 9367192 (`0x8EEE98`), 16749490 (`0xFF93B2`), or 16478047 (`0xFB6F5F`). To construct color from these values use [`Rgb::from_u32`]
19            ///
20            /// [`Rgb::from_u32`]: crate::types::Rgb::from_u32
21            pub icon_color: Rgb,
22            /// Unique identifier of the custom emoji shown as the topic icon. Use `getForumTopicIconStickers` to get all allowed custom emoji identifiers.
23            pub icon_custom_emoji_id: CustomEmojiId,
24        }
25    }
26}