46 lines
1005 B
Markdown
46 lines
1005 B
Markdown
---
|
|
title: contacts.contacts
|
|
description: contacts_contacts attributes, type and example
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: contacts.contacts
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|contacts|Array of [Contact](../types/Contact.md) | Yes|
|
|
|saved\_count|[int](../types/int.md) | Yes|
|
|
|users|Array of [User](../types/User.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [contacts\_Contacts](../types/contacts_Contacts.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$contacts_contacts = ['_' => 'contacts.contacts', 'contacts' => [Contact, Contact], 'saved_count' => int, 'users' => [User, User]];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "contacts.contacts", "contacts": [Contact], "saved_count": int, "users": [User]}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
contacts_contacts={_='contacts.contacts', contacts={Contact}, saved_count=int, users={User}}
|
|
|
|
```
|
|
|
|
|