Inherits Function.
Deletes a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat.
Returns object_ptr<Ok>.
Public Fields | |
object_ptr< MessageSender > | owner_id_ |
Identifier of the user or the channel chat that owns the collection. | |
int32 | collection_id_ |
Identifier of the gift collection. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
deleteGiftCollection () | |
deleteGiftCollection (object_ptr< MessageSender > &&owner_id_, int32 collection_id_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
![]() | |
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 = -183749499 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which deletes a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat.
Returns object_ptr<Ok>.
deleteGiftCollection | ( | object_ptr< MessageSender > && | owner_id_, |
int32 | collection_id_ | ||
) |
Creates a function, which deletes a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat.
Returns object_ptr<Ok>.
[in] | owner_id_ | Identifier of the user or the channel chat that owns the collection. |
[in] | collection_id_ | Identifier of the gift collection. |
|
finalvirtual |