1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use serde::Serialize;

use crate::{
    net,
    requests::{Request, ResponseResult},
    types::StickerSet,
    Bot,
};
use std::sync::Arc;

/// Use this method to get a sticker set.
///
/// [The official docs](https://core.telegram.org/bots/api#getstickerset).
#[serde_with_macros::skip_serializing_none]
#[derive(Debug, Clone, Serialize)]
pub struct GetStickerSet {
    #[serde(skip_serializing)]
    bot: Arc<Bot>,
    name: String,
}

#[async_trait::async_trait]
impl Request for GetStickerSet {
    type Output = StickerSet;

    async fn send(&self) -> ResponseResult<StickerSet> {
        net::request_json(
            self.bot.client(),
            self.bot.token(),
            "getStickerSet",
            &self,
        )
        .await
    }
}

impl GetStickerSet {
    pub(crate) fn new<N>(bot: Arc<Bot>, name: N) -> Self
    where
        N: Into<String>,
    {
        let name = name.into();
        Self { bot, name }
    }

    /// Name of the sticker set.
    pub fn name<T>(mut self, val: T) -> Self
    where
        T: Into<String>,
    {
        self.name = val.into();
        self
    }
}