BlockFromRepliesRequest
Both users and bots may be able to use this request. See code examples.
---functions--- contacts.blockFromReplies#29a8962c flags:# delete_message:flags.0?true delete_history:flags.1?true report_spam:flags.2?true msg_id:int = Updates
Returns
Updates |
This type can be an instance of either:
UpdateShort | UpdateShortChatMessage |
UpdateShortMessage | UpdateShortSentMessage |
Updates | UpdatesCombined |
UpdatesTooLong |
Parameters
msg_id | int | |
delete_message | flag | This argument defaults to None and can be omitted. |
delete_history | flag | This argument defaults to None and can be omitted. |
report_spam | flag | This argument defaults to None and can be omitted. |
Known RPC errors
This request can't cause any RPC error as far as we know.
Example
from telethon.sync import TelegramClient from telethon import functions, types with TelegramClient(name, api_id, api_hash) as client: result = client(functions.contacts.BlockFromRepliesRequest( msg_id=42, delete_message=True, delete_history=True, report_spam=True )) print(result.stringify())