mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:27:46 +01:00
27 lines
633 B
Markdown
27 lines
633 B
Markdown
|
---
|
||
|
title: channelParticipantEditor
|
||
|
description: channelParticipantEditor attributes, type and example
|
||
|
---
|
||
|
## Constructor: channelParticipantEditor
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|user\_id|[int](../types/int.md) | Required|
|
||
|
|inviter\_id|[int](../types/int.md) | Required|
|
||
|
|date|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [ChannelParticipant](../types/ChannelParticipant.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$channelParticipantEditor = ['_' => 'channelParticipantEditor', 'user_id' => int, 'inviter_id' => int, 'date' => int, ];
|
||
|
```
|