mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-24 23:57:38 +01:00
Update StickerSet
This commit is contained in:
parent
f283d367b6
commit
6bef1ff027
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::types::Sticker;
|
use crate::types::{PhotoSize, Sticker};
|
||||||
|
|
||||||
/// This object represents a sticker set.
|
/// This object represents a sticker set.
|
||||||
///
|
///
|
||||||
|
@ -24,4 +24,7 @@ pub struct StickerSet {
|
||||||
|
|
||||||
/// List of all set stickers.
|
/// List of all set stickers.
|
||||||
pub stickers: Vec<Sticker>,
|
pub stickers: Vec<Sticker>,
|
||||||
|
|
||||||
|
/// Sticker set thumbnail in the .WEBP or .TGS format.
|
||||||
|
thumb: Option<PhotoSize>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue