MadelineProtoDocs/old_docs/API_docs_v62/constructors/contacts.link.md

42 lines
902 B
Markdown

---
title: contacts.link
description: Link
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
redirect_from: /API_docs/constructors/contacts_link.html
---
# Constructor: contacts.link
[Back to constructors index](index.md)
Link
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|my\_link|[ContactLink](../types/ContactLink.md) | Yes|My link|
|foreign\_link|[ContactLink](../types/ContactLink.md) | Yes|Foreign link|
|user|[User](../types/User.md) | Optional|User|
### Type: [contacts.Link](../types/contacts.Link.md)
### Example:
```php
$contacts.link = ['_' => 'contacts.link', 'my_link' => ContactLink, 'foreign_link' => ContactLink, 'user' => User];
```
Or, if you're into Lua:
```lua
contacts.link={_='contacts.link', my_link=ContactLink, foreign_link=ContactLink, user=User}
```