MadelineProtoDocs/docs/API_docs/constructors/channelParticipantAdmin.md

1.6 KiB

title description image
channelParticipantAdmin Admin https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: channelParticipantAdmin

Back to constructors index

Admin

Attributes:

Name Type Required Description
can_edit Bool Optional Can this admin promote other admins with the same permissions?
self Bool Optional Is this the current user
user_id int Yes Admin user ID
inviter_id int Optional User that invited the admin to the channel/group
promoted_by int Yes User that promoted the user to admin
date int Yes When did the user join
admin_rights ChatAdminRights Yes Admin rights
rank string Optional The role (rank) of the admin in the group: just an arbitrary string, admin by default

Type: ChannelParticipant

Example:

$channelParticipantAdmin = ['_' => 'channelParticipantAdmin', 'can_edit' => Bool, 'self' => Bool, 'user_id' => int, 'inviter_id' => int, 'promoted_by' => int, 'date' => int, 'admin_rights' => ChatAdminRights, 'rank' => 'string'];

Or, if you're into Lua:

channelParticipantAdmin={_='channelParticipantAdmin', can_edit=Bool, self=Bool, user_id=int, inviter_id=int, promoted_by=int, date=int, admin_rights=ChatAdminRights, rank='string'}