mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
30 lines
716 B
Markdown
30 lines
716 B
Markdown
|
---
|
||
|
title: "chatParticipantCreator"
|
||
|
description: "Represents the creator of the group"
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: chatParticipantCreator
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
Represents the creator of the group
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|user\_id|[long](/API_docs/types/long.html) | Yes|ID of the user that created the group|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [ChatParticipant](/API_docs/types/ChatParticipant.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$chatParticipantCreator = ['_' => 'chatParticipantCreator', 'user_id' => long];
|
||
|
```
|