MadelineProtoDocs/old_docs/API_docs_v18/constructors/updateContactLink.md
2019-12-27 18:25:37 +01:00

955 B

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];

Or, if you're into Lua:

updateContactLink={_='updateContactLink', user_id=int, my_link=contacts.MyLink, foreign_link=contacts.ForeignLink}