MadelineProto/old_docs/API_docs_v27/constructors/inputUserContact.md

908 B

title description
inputUserContact inputUserContact attributes, type and example

Constructor: inputUserContact

Back to constructors index

Attributes:

Name Type Required
user_id int Required

Type: InputUser

Example:

$inputUserContact = ['_' => 'inputUserContact', 'user_id' => int, ];

The following syntaxes can also be used:

$inputUserContact = '@username'; // Username

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

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