1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
updateContactLink | Update contact link | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateContactLink
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}