channels.ReportAntiSpamFalsePositive
- class pyrogram.raw.functions.channels.ReportAntiSpamFalsePositive
Report a native antispam false positive
- Details:
Layer:
223ID:
A850A693
- Parameters:
channel (
InputChannel) – Supergroup IDmsg_id (
int32-bit) – Message ID that was mistakenly deleted by the native antispam system, taken from the admin log
- Returns:
bool
TL Schema
channels.reportAntiSpamFalsePositive#a850a693
channel:InputChannel
msg_id:int
= Bool
Parameter Tree
ReportAntiSpamFalsePositive
├── channel →
InputChannel│ ├──
InputChannelEmpty│ ├──
InputChannel│ │ ├── channel_id →
long│ │ └── access_hash →
long│ └──
InputChannelFromMessage│ ├── peer →
InputPeer│ │ ├──
InputPeerEmpty│ │ ├──
InputPeerSelf│ │ ├──
InputPeerChat│ │ ├──
InputPeerUser│ │ ├──
InputPeerChannel│ │ ├──
InputPeerUserFromMessage│ │ └──
InputPeerChannelFromMessage│ ├── msg_id →
int│ └── channel_id →
long└── msg_id →
intExample
await app.invoke(
ReportAntiSpamFalsePositive(
channel=await app.resolve_channel(chat_id),
msg_id=0,
)
)