MadelineProto/docs/TD_docs/constructors/chatReportSpamState.md

45 lines
885 B
Markdown
Raw Normal View History

---
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:
```
2017-07-23 16:33:46 +02:00
$chatReportSpamState = ['_' => 'chatReportSpamState', 'can_report_spam' => Bool];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "chatReportSpamState", "can_report_spam": Bool}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
chatReportSpamState={_='chatReportSpamState', can_report_spam=Bool}
```