MadelineProtoDocs/old_docs/API_docs_v2/constructors/message.md

1.4 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
id int Yes ID of the message
from_id int Yes ID of the sender of the message
to_id Peer Yes ID of the chat were the message was sent
fwd_from_id int Optional
fwd_date int Optional
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

Type: Message

Example:

$message = ['_' => 'message', 'id' => int, 'from_id' => int, 'to_id' => Peer, 'fwd_from_id' => int, 'fwd_date' => int, 'reply_to_msg_id' => int, 'date' => int, 'message' => 'string', 'media' => MessageMedia];

Or, if you're into Lua:

message={_='message', id=int, from_id=int, to_id=Peer, fwd_from_id=int, fwd_date=int, reply_to_msg_id=int, date=int, message='string', media=MessageMedia}