Inherits Function.
Changes name of a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat. Returns the changed collection.
Returns object_ptr<GiftCollection>.
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. | |
string | name_ |
New name of the collection; 1-12 characters. | |
Public Types | |
using | ReturnType = object_ptr< giftCollection > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
setGiftCollectionName () | |
setGiftCollectionName (object_ptr< MessageSender > &&owner_id_, int32 collection_id_, string const &name_) | |
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 = 1108355593 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which changes name of a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat. Returns the changed collection.
Returns object_ptr<GiftCollection>.
setGiftCollectionName | ( | object_ptr< MessageSender > && | owner_id_, |
int32 | collection_id_, | ||
string const & | name_ | ||
) |
Creates a function, which changes name of a gift collection. If the collection is owned by a channel chat, then requires can_post_messages administrator right in the channel chat. Returns the changed collection.
Returns object_ptr<GiftCollection>.
[in] | owner_id_ | Identifier of the user or the channel chat that owns the collection. |
[in] | collection_id_ | Identifier of the gift collection. |
[in] | name_ | New name of the collection; 1-12 characters. |
|
finalvirtual |