MadelineProtoDocs/old_docs/API_docs_v1/constructors/updateContactLink.md

39 lines
904 B
Markdown
Raw Normal View History

2020-06-16 17:50:25 +02:00
---
title: updateContactLink
description: updateContactLink attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: updateContactLink
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|user\_id|[int](../types/int.md) | Yes|
|my\_link|[contacts.MyLink](../constructors/contacts.MyLink.md) | Yes|
|foreign\_link|[contacts.ForeignLink](../constructors/contacts.ForeignLink.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```php
$updateContactLink = ['_' => 'updateContactLink', 'user_id' => int, 'my_link' => contacts.MyLink, 'foreign_link' => contacts.ForeignLink];
```
Or, if you're into Lua:
```lua
updateContactLink={_='updateContactLink', user_id=int, my_link=contacts.MyLink, foreign_link=contacts.ForeignLink}
```