Inherits Function.
Searches for a sticker set by its name.
Returns object_ptr<StickerSet>.
Public Fields | |
string | name_ |
Name of the sticker set. | |
bool | ignore_cache_ |
Pass true to ignore local cache of sticker sets and always send a network request. | |
Public Types | |
using | ReturnType = object_ptr< stickerSet > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
searchStickerSet () | |
searchStickerSet (string const &name_, bool ignore_cache_) | |
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 = 1676592898 |
Identifier uniquely determining a type of the object. | |
searchStickerSet | ( | ) |
Default constructor for a function, which searches for a sticker set by its name.
Returns object_ptr<StickerSet>.
searchStickerSet | ( | string const & | name_, |
bool | ignore_cache_ | ||
) |
Creates a function, which searches for a sticker set by its name.
Returns object_ptr<StickerSet>.
[in] | name_ | Name of the sticker set. |
[in] | ignore_cache_ | Pass true to ignore local cache of sticker sets and always send a network request. |
|
finalvirtual |