MadelineProtoDocs/docs/API_docs/constructors/updateDialogPinned.md

850 B

title description image
updateDialogPinned updateDialogPinned attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateDialogPinned

Back to constructors index

Attributes:

Name Type Required
pinned Bool Optional
peer DialogPeer Yes

Type: Update

Example:

$updateDialogPinned = ['_' => 'updateDialogPinned', 'pinned' => Bool, 'peer' => DialogPeer];

PWRTelegram json-encoded version:

{"_": "updateDialogPinned", "pinned": Bool, "peer": DialogPeer}

Or, if you're into Lua:

updateDialogPinned={_='updateDialogPinned', pinned=Bool, peer=DialogPeer}