MadelineProtoDocs/old_docs/API_docs_v105/constructors/contact.md

40 lines
644 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: contact
description: Contact
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: contact
[Back to constructors index](index.md)
Contact
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user\_id|[int](../types/int.md) | Yes|User ID|
|mutual|[Bool](../types/Bool.md) | Yes|Mutual?|
### Type: [Contact](../types/Contact.md)
### Example:
```php
$contact = ['_' => 'contact', 'user_id' => int, 'mutual' => Bool];
```
Or, if you're into Lua:
```lua
contact={_='contact', user_id=int, mutual=Bool}
```