MadelineProto/old_docs/API_docs_v68/constructors/chatParticipant.md

45 lines
830 B
Markdown
Raw Normal View History

2017-07-23 17:44:01 +02:00
---
title: chatParticipant
description: chatParticipant attributes, type and example
---
## Constructor: chatParticipant
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
2017-07-23 17:44:01 +02:00
|user\_id|[int](../types/int.md) | Yes|
|inviter\_id|[int](../types/int.md) | Yes|
|date|[int](../types/int.md) | Yes|
### Type: [ChatParticipant](../types/ChatParticipant.md)
### Example:
```
$chatParticipant = ['_' => 'chatParticipant', 'user_id' => int, 'inviter_id' => int, 'date' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatParticipant", "user_id": int, "inviter_id": int, "date": int}
```
Or, if you're into Lua:
```
chatParticipant={_='chatParticipant', user_id=int, inviter_id=int, date=int}
```