1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-02 13:17:47 +01:00
MadelineProto/old_docs/API_docs_v70/constructors/updateUserPhone.md

738 B

title description
updateUserPhone updateUserPhone attributes, type and example

Constructor: updateUserPhone

Back to constructors index

Attributes:

Name Type Required
user_id int Yes
phone string Yes

Type: Update

Example:

$updateUserPhone = ['_' => 'updateUserPhone', 'user_id' => int, 'phone' => 'string'];

PWRTelegram json-encoded version:

{"_": "updateUserPhone", "user_id": int, "phone": "string"}

Or, if you're into Lua:

updateUserPhone={_='updateUserPhone', user_id=int, phone='string'}