--- title: contacts.contacts description: Contacts image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: contacts.contacts [Back to constructors index](index.md) Contacts ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |contacts|Array of [Contact](../types/Contact.md) | Yes|Contacts| |saved\_count|[int](../types/int.md) | Yes|Saved count| |users|Array of [User](../types/User.md) | Yes|Users| ### Type: [contacts\_Contacts](../types/contacts_Contacts.md) ### Example: ```php $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: ```lua contacts_contacts={_='contacts.contacts', contacts={Contact}, saved_count=int, users={User}} ```