MadelineProto/old_docs/API_docs_v46/constructors/inputChannel.md

946 B

title description
inputChannel inputChannel attributes, type and example

Constructor: inputChannel

Back to constructors index

Attributes:

Name Type Required
channel_id int Required
access_hash long Required

Type: InputChannel

Example:

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

The following syntaxes can also be used:

$inputChannel = '@username'; // Username

$inputChannel = 44700; // bot API id (users)
$inputChannel = -492772765; // bot API id (chats)
$inputChannel = -10038575794; // bot API id (channels)

$inputChannel = 'user#44700'; // tg-cli style id (users)
$inputChannel = 'chat#492772765'; // tg-cli style id (chats)
$inputChannel = 'channel#38575794'; // tg-cli style id (channels)