Layer 220
constructor
messages.foundStickers#82c9e290 flags:# next_offset:flags.0?int hash:long stickers:Vector<Document> = messages.FoundStickers;

Parameters

Name Type Description
Flags # Flags, see TL conditional fields
NextOffset flags.0?int Offset for pagination
Hash long Hash used for caching, for more info click here
Stickers Vector<Document> Found stickers

Gogram Example

// Creating MessagesFoundStickers constructor
obj := &tg.MessagesFoundStickers{
    Hash: int64(0),
    Stickers: []tg.Document{&tg.Document{}},

    // Optional fields:
    // NextOffset: 0,
}