MadelineProtoDocs/old_docs/API_docs_v43/constructors/chatParticipantsForbidden.md

40 lines
941 B
Markdown
Raw Permalink Normal View History

2020-09-12 12:47:38 +02:00
---
title: chatParticipantsForbidden
description: Info on members is unavailable
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: chatParticipantsForbidden
[Back to constructors index](index.md)
Info on members is unavailable
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|chat\_id|[int](../types/int.md) | Yes|Group ID|
|self\_participant|[ChatParticipant](../types/ChatParticipant.md) | Optional|Info about the group membership of the current user|
### Type: [ChatParticipants](../types/ChatParticipants.md)
### Example:
```php
$chatParticipantsForbidden = ['_' => 'chatParticipantsForbidden', 'chat_id' => int, 'self_participant' => ChatParticipant];
```
Or, if you're into Lua:
```lua
chatParticipantsForbidden={_='chatParticipantsForbidden', chat_id=int, self_participant=ChatParticipant}
```