Inherits Function.
Searches for emojis by keywords. Supported only if the file database is enabled. Order of results is unspecified.
Returns object_ptr<EmojiKeywords>.
Public Fields | |
string | text_ |
Text to search for. | |
array< string > | input_language_codes_ |
List of possible IETF language tags of the user's input language; may be empty if unknown. | |
Public Types | |
using | ReturnType = object_ptr< emojiKeywords > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
searchEmojis () | |
searchEmojis (string const &text_, array< string > &&input_language_codes_) | |
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 = -1456187668 |
Identifier uniquely determining a type of the object. | |
searchEmojis | ( | ) |
Default constructor for a function, which searches for emojis by keywords. Supported only if the file database is enabled. Order of results is unspecified.
Returns object_ptr<EmojiKeywords>.
searchEmojis | ( | string const & | text_, |
array< string > && | input_language_codes_ | ||
) |
Creates a function, which searches for emojis by keywords. Supported only if the file database is enabled. Order of results is unspecified.
Returns object_ptr<EmojiKeywords>.
[in] | text_ | Text to search for. |
[in] | input_language_codes_ | List of possible IETF language tags of the user's input language; may be empty if unknown. |
|
finalvirtual |