1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
dialog | Dialog | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: dialog
Dialog
Attributes:
Name | Type | Required | Description |
---|---|---|---|
peer | Peer | Yes | Peer |
top_message | int | Yes | Top message |
read_inbox_max_id | int | Yes | Read inbox max ID |
read_outbox_max_id | int | Yes | Read outbox max ID |
unread_count | int | Yes | Unread count |
notify_settings | PeerNotifySettings | Optional | Notify settings |
pts | int | Optional | Pts |
draft | DraftMessage | Optional | Draft |
Type: Dialog
Example:
$dialog = ['_' => 'dialog', 'peer' => Peer, 'top_message' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'notify_settings' => PeerNotifySettings, 'pts' => int, 'draft' => DraftMessage];
Or, if you're into Lua:
dialog={_='dialog', peer=Peer, top_message=int, read_inbox_max_id=int, read_outbox_max_id=int, unread_count=int, notify_settings=PeerNotifySettings, pts=int, draft=DraftMessage}