mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-11 13:39:38 +01:00
36 lines
837 B
Markdown
36 lines
837 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, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|