use crate::client::Bot;
use serde::Serialize;
#[derive(Clone, Debug, Serialize)]
pub struct GetForumTopicIconStickers {}
impl GetForumTopicIconStickers {
#[must_use]
pub const fn new() -> Self {
Self {}
}
}
impl Default for GetForumTopicIconStickers {
fn default() -> Self {
Self::new()
}
}
impl super::TelegramMethod for GetForumTopicIconStickers {
type Method = Self;
type Return = Box<[crate::types::Sticker]>;
fn build_request<Client>(self, _bot: &Bot<Client>) -> super::Request<Self::Method> {
super::Request::new("getForumTopicIconStickers", self, None)
}
}