MadelineProto/old_docs/API_docs_v42/constructors/peerChat.md

802 B

title description
peerChat peerChat attributes, type and example

Constructor: peerChat

Back to constructors index

Attributes:

Name Type Required
chat_id int Required

Type: Peer

Example:

$peerChat = ['_' => 'peerChat', 'chat_id' => int, ];

The following syntaxes can also be used:

$peerChat = '@username'; // Username

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

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