mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 00:19:37 +01:00
1.4 KiB
1.4 KiB
title | description |
---|---|
messageService | messageService attributes, type and example |
Constructor: messageService
Attributes:
Name | Type | Required |
---|---|---|
unread | Bool | Optional |
out | Bool | Optional |
mentioned | Bool | Optional |
media_unread | Bool | Optional |
id | int | Yes |
from_id | int | Optional |
to_id | Peer | Yes |
date | int | Yes |
action | MessageAction | Yes |
Type: Message
Example:
$messageService = ['_' => 'messageService', 'unread' => Bool, 'out' => Bool, 'mentioned' => Bool, 'media_unread' => Bool, 'id' => int, 'from_id' => int, 'to_id' => Peer, 'date' => int, 'action' => MessageAction, ];
PWRTelegram json-encoded version:
{"_":"messageService","unread":"Bool","out":"Bool","mentioned":"Bool","media_unread":"Bool","id":"int","from_id":"int","to_id":"Peer","date":"int","action":"MessageAction"}
Or, if you're into Lua:
messageService={_='messageService', unread=Bool, out=Bool, mentioned=Bool, media_unread=Bool, id=int, from_id=int, to_id=Peer, date=int, action=MessageAction, }