1.1 KiB
1.1 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, ];
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, }