Layer 227
constructor
messages.recentStickers#88d37c56 hash:long packs:Vector<StickerPack> stickers:Vector<Document> dates:Vector<int> = messages.RecentStickers;

Parameters

Name Type Description
Hash long Hash used for caching, for more info click here
Packs Vector < StickerPack > Emojis associated to stickers
Stickers Vector < Document > Recent stickers
Dates Vector < int > When was each sticker last used

Gogram Example

// Creating MessagesRecentStickersObj constructor
obj := &tg.MessagesRecentStickersObj{
    Hash: int64(1234567890),
    Packs: &tg.VectorStickerPack{},
    Stickers: &tg.VectorDocument{},
    Dates: &tg.VectorInt{},
}