mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 11:34:41 +01:00
653 B
653 B
title | description |
---|---|
inputUserContact | inputUserContact attributes, type and example |
Constructor: inputUserContact
Attributes:
Name | Type | Required |
---|---|---|
user_id | int | Yes |
Type: InputUser
Example:
$inputUserContact = ['_' => 'inputUserContact', 'user_id' => int];
PWRTelegram json-encoded version:
{"_": "inputUserContact", "user_id": int}
Or, if you're into Lua:
inputUserContact={_='inputUserContact', user_id=int}