45 lines
1.0 KiB
Markdown
45 lines
1.0 KiB
Markdown
---
|
|
title: channelAdminLogEventActionParticipantInvite
|
|
description: Invite participant
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: channelAdminLogEventActionParticipantInvite
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Invite participant
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|participant|[ChannelParticipant](../types/ChannelParticipant.md) | Yes|Participant|
|
|
|
|
|
|
|
|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "channelAdminLogEventActionParticipantInvite", "participant": ChannelParticipant}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant}
|
|
|
|
```
|
|
|
|
|