MadelineProto/docs/TD_docs/constructors/chatReportSpamState.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
885 B
Markdown

---
title: chatReportSpamState
description: Contains information about chat report spam state
---
## Constructor: chatReportSpamState
[Back to constructors index](index.md)
Contains information about chat report spam state
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|can\_report\_spam|[Bool](../types/Bool.md) | Yes|If true, prompt with "Report spam" action should be shown to the user|
### Type: [ChatReportSpamState](../types/ChatReportSpamState.md)
### Example:
```
$chatReportSpamState = ['_' => 'chatReportSpamState', 'can_report_spam' => Bool];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatReportSpamState", "can_report_spam": Bool}
```
Or, if you're into Lua:
```
chatReportSpamState={_='chatReportSpamState', can_report_spam=Bool}
```