1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-04 10:07:47 +01:00
MadelineProto/docs/API_docs/constructors/channelParticipantAdmin.md
2017-07-23 16:11:02 +02:00

1.3 KiB

title description
channelParticipantAdmin channelParticipantAdmin attributes, type and example

Constructor: channelParticipantAdmin

Back to constructors index

Attributes:

Name Type Required
can_edit Bool Optional
user_id int Yes
inviter_id int Yes
promoted_by int Yes
date int Yes
admin_rights ChannelAdminRights Yes

Type: ChannelParticipant

Example:

$channelParticipantAdmin = ['_' => 'channelParticipantAdmin', 'can_edit' => Bool, 'user_id' => int, 'inviter_id' => int, 'promoted_by' => int, 'date' => int, 'admin_rights' => ChannelAdminRights, ];

PWRTelegram json-encoded version:

{"_":"channelParticipantAdmin","can_edit":"Bool","user_id":"int","inviter_id":"int","promoted_by":"int","date":"int","admin_rights":"ChannelAdminRights"}

Or, if you're into Lua:

channelParticipantAdmin={_='channelParticipantAdmin', can_edit=Bool, user_id=int, inviter_id=int, promoted_by=int, date=int, admin_rights=ChannelAdminRights, }