MadelineProtoDocs/old_docs/API_docs_v14/constructors/message.md

2.7 KiB

title description image
message A message https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: message

Back to constructors index

A message

Attributes:

Name Type Required Description
out Bool Optional Is this an outgoing message
mentioned Bool Optional Whether we were mentioned in this message
media_unread Bool Optional Whether there are unread media attachments in this message
silent Bool Optional Whether this is a silent message (no notification triggered)
post Bool Optional Whether this is a channel post
id int Yes ID of the message
from_id int Optional ID of the sender of the message
to_id Peer Yes ID of the chat were the message was sent
fwd_from MessageFwdHeader Optional Info about forwarded messages
via_bot_id int Optional ID of the inline bot that generated the message
reply_to_msg_id int Optional ID of the message this message replies to
date int Yes Date of the message
message string Yes The message
media MessageMedia Optional Media attachment
reply_markup ReplyMarkup Optional Reply markup (bot/inline keyboards)
entities Array of MessageEntity Optional Message entities for styled text
views int Optional View count for channel posts
edit_date int Optional Last edit date of this message

Type: Message

Example:

$message = ['_' => 'message', 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'silent' => Bool, 'post' => Bool, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'fwd_from' => MessageFwdHeader, 'via_bot_id' => int, 'reply_to_msg_id' => int, 'date' => int, 'message' => 'string', 'media' => MessageMedia, 'reply_markup' => ReplyMarkup, 'entities' => [MessageEntity, MessageEntity], 'views' => int, 'edit_date' => int];

Or, if you're into Lua:

message={_='message', out=Bool, mentioned=Bool, media_unread=Bool, silent=Bool, post=Bool, id=int, from_id=int, to_id=Peer, fwd_from=MessageFwdHeader, via_bot_id=int, reply_to_msg_id=int, date=int, message='string', media=MessageMedia, reply_markup=ReplyMarkup, entities={MessageEntity}, views=int, edit_date=int}

Usage of reply_markup

You can provide bot API reply_markup objects here.