MadelineProtoDocs/old_docs/API_docs_v0/constructors/updateContactLink.md
2020-06-16 17:50:25 +02:00

904 B

title description image
updateContactLink updateContactLink attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: updateContactLink

Back to constructors index

Attributes:

Name Type Required
user_id int Yes
my_link contacts.MyLink Yes
foreign_link contacts.ForeignLink Yes

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}