Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.1 KiB

title description image
updateContactLink Update contact link https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateContactLink

Back to constructors index

Update contact link

Attributes:

Name Type Required Description
user_id int Yes User ID
my_link contacts_MyLink Yes My link
foreign_link contacts_ForeignLink Yes Foreign link

Type: Update

Example:

$updateContactLink = ['_' => 'updateContactLink', 'user_id' => int, 'my_link' => contacts_MyLink, 'foreign_link' => contacts_ForeignLink];

PWRTelegram json-encoded version:

{"_": "updateContactLink", "user_id": int, "my_link": contacts_MyLink, "foreign_link": contacts_ForeignLink}

Or, if you're into Lua:

updateContactLink={_='updateContactLink', user_id=int, my_link=contacts_MyLink, foreign_link=contacts_ForeignLink}