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

881 B

title description image
inputPeerChannel Peer channel https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputPeerChannel

Back to constructors index

Peer channel

Attributes:

Name Type Required Description
channel_id int Yes Channel ID
access_hash long Yes Access hash

Type: InputPeer

Example:

$inputPeerChannel = ['_' => 'inputPeerChannel', 'channel_id' => int, 'access_hash' => long];

PWRTelegram json-encoded version:

{"_": "inputPeerChannel", "channel_id": int, "access_hash": long}

Or, if you're into Lua:

inputPeerChannel={_='inputPeerChannel', channel_id=int, access_hash=long}