mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-16 02:16:54 +01:00
888 B
888 B
title | description |
---|---|
chatReportSpamState | Contains information about chat report spam state |
Constructor: chatReportSpamState
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, }