Inherits Function.
Changes the status of a chat member; requires can_invite_users member right to add a chat member, can_promote_members administrator right to change administrator rights of the member, and can_restrict_members administrator right to change restrictions of a user. This function is currently not suitable for transferring chat ownership; use transferChatOwnership instead. Use addChatMember or banChatMember if some additional parameters needs to be passed.
Returns object_ptr<Ok>.
Public Fields | |
int53 | chat_id_ |
Chat identifier. | |
object_ptr< MessageSender > | member_id_ |
Member identifier. Chats can be only banned and unbanned in supergroups and channels. | |
object_ptr< ChatMemberStatus > | status_ |
The new status of the member in the chat. | |
Public Types | |
using | ReturnType = object_ptr< ok > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
setChatMemberStatus () | |
setChatMemberStatus (int53 chat_id_, object_ptr< MessageSender > &&member_id_, object_ptr< ChatMemberStatus > &&status_) | |
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 = 81794847 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which changes the status of a chat member; requires can_invite_users member right to add a chat member, can_promote_members administrator right to change administrator rights of the member, and can_restrict_members administrator right to change restrictions of a user. This function is currently not suitable for transferring chat ownership; use transferChatOwnership instead. Use addChatMember or banChatMember if some additional parameters needs to be passed.
Returns object_ptr<Ok>.
setChatMemberStatus | ( | int53 | chat_id_, |
object_ptr< MessageSender > && | member_id_, | ||
object_ptr< ChatMemberStatus > && | status_ | ||
) |
Creates a function, which changes the status of a chat member; requires can_invite_users member right to add a chat member, can_promote_members administrator right to change administrator rights of the member, and can_restrict_members administrator right to change restrictions of a user. This function is currently not suitable for transferring chat ownership; use transferChatOwnership instead. Use addChatMember or banChatMember if some additional parameters needs to be passed.
Returns object_ptr<Ok>.
[in] | chat_id_ | Chat identifier. |
[in] | member_id_ | Member identifier. Chats can be only banned and unbanned in supergroups and channels. |
[in] | status_ | The new status of the member in the chat. |
|
finalvirtual |