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

43 lines
996 B
Markdown

---
title: channelAdminLogEventActionParticipantInvite
description: channelAdminLogEventActionParticipantInvite attributes, type and example
---
## Constructor: channelAdminLogEventActionParticipantInvite
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|participant|[ChannelParticipant](../types/ChannelParticipant.md) | Yes|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```
$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant, ];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"channelAdminLogEventActionParticipantInvite","participant":"ChannelParticipant"}
```
Or, if you're into Lua:
```
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant, }
```