37 lines
572 B
Markdown
37 lines
572 B
Markdown
|
---
|
||
|
title: chatForbidden
|
||
|
description: chatForbidden attributes, type and example
|
||
|
---
|
||
|
## Constructor: chatForbidden
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[int](../types/int.md) | Yes|
|
||
|
|title|[string](../types/string.md) | Yes|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Chat](../types/Chat.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$chatForbidden = ['_' => 'chatForbidden', 'id' => int, 'title' => string, ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
chatForbidden={_='chatForbidden', id=int, title=string, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|