messages.GetUnreadReactions
- class pyrogram.raw.functions.messages.GetUnreadReactions
Get unread reactions to messages you sent
- Details:
Layer:
223ID:
BD7F90AC
- Parameters:
peer (
InputPeer) – Peeroffset_id (
int32-bit) – Offsets for pagination, for more info click hereadd_offset (
int32-bit) – Offsets for pagination, for more info click herelimit (
int32-bit) – Maximum number of results to return, see paginationmax_id (
int32-bit) – Only return reactions for messages up until this message IDmin_id (
int32-bit) – Only return reactions for messages starting from this message IDtop_msg_id (
int32-bit, optional) – If set, considers only reactions to messages within the specified forum topicsaved_peer_id (
InputPeer, optional) – If set, must be equal to the ID of a monoforum topic: will affect that topic in the monoforum passed in peer.
- Returns:
TL Schema
messages.getUnreadReactions#bd7f90ac
flags:#
peer:InputPeer
top_msg_id:flags.0?int
saved_peer_id:flags.1?InputPeer
offset_id:int
add_offset:int
limit:int
max_id:int
min_id:int
= messages.Messages
Parameter Tree
InputPeerInputPeerEmptyInputPeerSelfInputPeerChatlongInputPeerUserlonglongInputPeerChannellonglongInputPeerUserFromMessageInputPeerInputPeerEmptyInputPeerSelfInputPeerChatInputPeerUserInputPeerChannelInputPeerUserFromMessageInputPeerChannelFromMessageintlongInputPeerInputPeerEmptyInputPeerSelfInputPeerChatInputPeerUserInputPeerChannelInputPeerUserFromMessageInputPeerChannelFromMessageintlongint (optional)InputPeer (optional)InputPeerEmptyInputPeerSelfInputPeerChatlongInputPeerUserlonglongInputPeerChannellonglongInputPeerUserFromMessageInputPeerInputPeerEmptyInputPeerSelfInputPeerChatInputPeerUserInputPeerChannelInputPeerUserFromMessageInputPeerChannelFromMessageintlongInputPeerInputPeerEmptyInputPeerSelfInputPeerChatInputPeerUserInputPeerChannelInputPeerUserFromMessageInputPeerChannelFromMessageintlongintintintintintExample
await app.invoke(
GetUnreadReactions(
peer=await app.resolve_peer(chat_id),
top_msg_id=0,
saved_peer_id=await app.resolve_peer(chat_id),
offset_id=0,
add_offset=0,
limit=0,
max_id=0,
min_id=0,
)
)