MadelineProtoDocs/old_docs/API_docs_v25/constructors/channelAdminLogEventActionParticipantInvite.md

39 lines
956 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: channelAdminLogEventActionParticipantInvite
description: A user was invited to the group
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: channelAdminLogEventActionParticipantInvite
[Back to constructors index](index.md)
A user was invited to the group
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|participant|[ChannelParticipant](../types/ChannelParticipant.md) | Yes|The user that was invited|
### Type: [ChannelAdminLogEventAction](../types/ChannelAdminLogEventAction.md)
### Example:
```php
$channelAdminLogEventActionParticipantInvite = ['_' => 'channelAdminLogEventActionParticipantInvite', 'participant' => ChannelParticipant];
```
Or, if you're into Lua:
```lua
channelAdminLogEventActionParticipantInvite={_='channelAdminLogEventActionParticipantInvite', participant=ChannelParticipant}
```