MadelineProto/old_docs/API_docs_v68/constructors/channelAdminLogEventActionParticipantInvite.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

993 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}