MadelineProtoDocs/docs/API_docs/constructors/updates_channelDifferenceEmpty.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.0 KiB

title description image
updates.channelDifferenceEmpty Empty channel difference https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updates.channelDifferenceEmpty

Back to constructors index

Empty channel difference

Attributes:

Name Type Required Description
final Bool Optional Final?
pts int Yes Pts
timeout int Optional Timeout

Type: updates_ChannelDifference

Example:

$updates_channelDifferenceEmpty = ['_' => 'updates.channelDifferenceEmpty', 'final' => Bool, 'pts' => int, 'timeout' => int];

PWRTelegram json-encoded version:

{"_": "updates.channelDifferenceEmpty", "final": Bool, "pts": int, "timeout": int}

Or, if you're into Lua:

updates_channelDifferenceEmpty={_='updates.channelDifferenceEmpty', final=Bool, pts=int, timeout=int}