teloxide_core/payloads/
edit_forum_topic.rs

1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{CustomEmojiId, Recipient, ThreadId, True};
6
7impl_payload! {
8    /// Use this method to edit name and icon of a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have _can\_manage\_topics_ administrator rights, unless it is the creator of the topic. Returns True on success.
9    #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
10    pub EditForumTopic (EditForumTopicSetters) => 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            /// Unique identifier for the target message thread of the forum topic
15            pub message_thread_id: ThreadId,
16        }
17        optional {
18            /// Topic name, 0-128 characters. If not specified or empty, the current name of the topic will be kept
19            pub name: String [into],
20            /// Unique identifier of the custom emoji shown as the topic icon. Use `getForumTopicIconStickers` to get all allowed custom emoji identifiers. Pass an empty string to remove the icon. If not specified, the current icon will be kept
21            pub icon_custom_emoji_id: CustomEmojiId,
22        }
23    }
24}