Inherits Function.
Returns unique emoji that correspond to stickers to be found by the getStickers(sticker_type, query, 1000000, chat_id).
Returns object_ptr<Emojis>.
Public Fields | |
object_ptr< StickerType > | sticker_type_ |
Type of the stickers to search for. | |
string | query_ |
Search query. | |
int53 | chat_id_ |
Chat identifier for which to find stickers. | |
bool | return_only_main_emoji_ |
Pass true if only main emoji for each found sticker must be included in the result. | |
Public Types | |
using | ReturnType = object_ptr< emojis > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getAllStickerEmojis () | |
getAllStickerEmojis (object_ptr< StickerType > &&sticker_type_, string const &query_, int53 chat_id_, bool return_only_main_emoji_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = 296562224 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which returns unique emoji that correspond to stickers to be found by the getStickers(sticker_type, query, 1000000, chat_id).
Returns object_ptr<Emojis>.
getAllStickerEmojis | ( | object_ptr< StickerType > && | sticker_type_, |
string const & | query_, | ||
int53 | chat_id_, | ||
bool | return_only_main_emoji_ | ||
) |
Creates a function, which returns unique emoji that correspond to stickers to be found by the getStickers(sticker_type, query, 1000000, chat_id).
Returns object_ptr<Emojis>.
[in] | sticker_type_ | Type of the stickers to search for. |
[in] | query_ | Search query. |
[in] | chat_id_ | Chat identifier for which to find stickers. |
[in] | return_only_main_emoji_ | Pass true if only main emoji for each found sticker must be included in the result. |
|
finalvirtual |