1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generated by `codegen_payloads`, do not edit by hand.

use serde::Serialize;

use crate::types::Sticker;

impl_payload! {
    /// Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects.
    #[derive(Debug, PartialEq, Eq, Hash, Clone, Serialize)]
    pub GetCustomEmojiStickers (GetCustomEmojiStickersSetters) => Vec<Sticker> {
        required {
            /// List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified.
            pub custom_emoji_ids: Vec<String> [collect],
        }
    }
}