1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-16 02:16:54 +01:00
MadelineProto/docs/TD_docs/constructors/chatReportSpamState.md
2017-07-23 16:11:02 +02:00

888 B

title description
chatReportSpamState Contains information about chat report spam state

Constructor: chatReportSpamState

Back to constructors index

Contains information about chat report spam state

Attributes:

Name Type Required Description
can_report_spam Bool Yes If true, prompt with "Report spam" action should be shown to the user

Type: ChatReportSpamState

Example:

$chatReportSpamState = ['_' => 'chatReportSpamState', 'can_report_spam' => Bool, ];

PWRTelegram json-encoded version:

{"_":"chatReportSpamState","can_report_spam":"Bool"}

Or, if you're into Lua:

chatReportSpamState={_='chatReportSpamState', can_report_spam=Bool, }