Update StickerSet

This commit is contained in:
Temirkhan Myrzamadi 2020-07-29 18:22:19 +06:00
parent f283d367b6
commit 6bef1ff027

View file

@ -1,6 +1,6 @@
use serde::{Deserialize, Serialize};
use crate::types::Sticker;
use crate::types::{PhotoSize, Sticker};
/// This object represents a sticker set.
///
@ -24,4 +24,7 @@ pub struct StickerSet {
/// List of all set stickers.
pub stickers: Vec<Sticker>,
/// Sticker set thumbnail in the .WEBP or .TGS format.
thumb: Option<PhotoSize>,
}