Inherits Function.
Returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) found in the text. Can be called synchronously.
Returns object_ptr<TextEntities>.
Public Fields | |
string | text_ |
The text in which to look for entities. | |
Public Types | |
using | ReturnType = object_ptr< textEntities > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
getTextEntities () | |
getTextEntities (string const &text_) | |
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 = -341490693 |
Identifier uniquely determining a type of the object. | |
getTextEntities | ( | ) |
Default constructor for a function, which returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) found in the text. Can be called synchronously.
Returns object_ptr<TextEntities>.
|
explicit |
Creates a function, which returns all entities (mentions, hashtags, cashtags, bot commands, bank card numbers, URLs, and email addresses) found in the text. Can be called synchronously.
Returns object_ptr<TextEntities>.
[in] | text_ | The text in which to look for entities. |
|
finalvirtual |