MadelineProtoDocs/docs/API_docs/constructors/messageService.md

1.8 KiB

title description image
messageService Indicates a service message https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageService

Back to constructors index

Indicates a service message

Attributes:

Name Type Required Description
out Bool Optional Whether the message is outgoing
mentioned Bool Optional Whether we were mentioned in the message
media_unread Bool Optional Whether the message contains unread media
silent Bool Optional Whether the message is silent
post Bool Optional Whether it's a channel post
legacy Bool Optional This is a legacy message: it has to be refetched with the new layer
id int Yes Message ID
from_id Peer Optional
peer_id Peer Yes
reply_to MessageReplyHeader Optional
date int Yes Message date
action MessageAction Optional Event connected with the service message

Type: Message

Example:

$messageService = ['_' => 'messageService', 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'post' => Bool, 'legacy' => Bool, 'id' => int, 'from_id' => Peer, 'peer_id' => Peer, 'reply_to' => MessageReplyHeader, 'date' => int, 'action' => MessageAction];

Or, if you're into Lua:

messageService={_='messageService', out=Bool, mentioned=Bool, media_unread=Bool, silent=Bool, post=Bool, legacy=Bool, id=int, from_id=Peer, peer_id=Peer, reply_to=MessageReplyHeader, date=int, action=MessageAction}