Inherits Function.
Installs/uninstalls or activates/archives a sticker set.
Returns object_ptr<Ok>.
Public Fields | |
int64 | set_id_ |
Identifier of the sticker set. | |
bool | is_installed_ |
The new value of is_installed. | |
bool | is_archived_ |
The new value of is_archived. A sticker set can't be installed and archived simultaneously. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
changeStickerSet () | |
changeStickerSet (int64 set_id_, bool is_installed_, bool is_archived_) | |
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 = 449357293 |
Identifier uniquely determining a type of the object. | |
changeStickerSet | ( | ) |
Default constructor for a function, which installs/uninstalls or activates/archives a sticker set.
Returns object_ptr<Ok>.
changeStickerSet | ( | int64 | set_id_, |
bool | is_installed_, | ||
bool | is_archived_ | ||
) |
Creates a function, which installs/uninstalls or activates/archives a sticker set.
Returns object_ptr<Ok>.
[in] | set_id_ | Identifier of the sticker set. |
[in] | is_installed_ | The new value of is_installed. |
[in] | is_archived_ | The new value of is_archived. A sticker set can't be installed and archived simultaneously. |
|
finalvirtual |