1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-11 20:59:37 +01:00
MadelineProto/docs/API_docs/constructors/channelAdminLogEventActionParticipantInvite.md
2017-07-23 16:11:02 +02:00

996 B

title description
channelAdminLogEventActionParticipantInvite channelAdminLogEventActionParticipantInvite attributes, type and example

Constructor: channelAdminLogEventActionParticipantInvite

Back to constructors index

Attributes:

Name Type Required
participant ChannelParticipant Yes

Type: ChannelAdminLogEventAction

Example:

$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant, ];

PWRTelegram json-encoded version:

{"_":"channelAdminLogEventActionParticipantInvite","participant":"ChannelParticipant"}

Or, if you're into Lua:

channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant, }