MadelineProto/old_docs/API_docs_v68/constructors/draftMessage.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.1 KiB

title description
draftMessage draftMessage attributes, type and example

Constructor: draftMessage

Back to constructors index

Attributes:

Name Type Required
no_webpage Bool Optional
reply_to_msg_id int Optional
message string Yes
entities Array of MessageEntity Optional
date int Yes

Type: DraftMessage

Example:

$draftMessage = ['_' => 'draftMessage', 'no_webpage' => Bool, 'reply_to_msg_id' => int, 'message' => 'string', 'entities' => [MessageEntity], 'date' => int];

PWRTelegram json-encoded version:

{"_": "draftMessage", "no_webpage": Bool, "reply_to_msg_id": int, "message": "string", "entities": [MessageEntity], "date": int}

Or, if you're into Lua:

draftMessage={_='draftMessage', no_webpage=Bool, reply_to_msg_id=int, message='string', entities={MessageEntity}, date=int}