teloxide_core/payloads/
get_custom_emoji_stickers.rs

1//! Generated by `codegen_payloads`, do not edit by hand.
2
3use serde::Serialize;
4
5use crate::types::{CustomEmojiId, Sticker};
6
7impl_payload! {
8    /// Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects.
9    #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
10    pub GetCustomEmojiStickers (GetCustomEmojiStickersSetters) => Vec<Sticker> {
11        required {
12            /// List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.
13            pub custom_emoji_ids: Vec<CustomEmojiId> [collect],
14        }
15    }
16}