1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 13:34:42 +01:00
MadelineProto/old_docs/API_docs_v51/constructors/contact.md

547 B

title description
contact contact attributes, type and example

Constructor: contact

Back to constructors index

Attributes:

Name Type Required
user_id int Yes
mutual Bool Yes

Type: Contact

Example:

$contact = ['_' => 'contact', 'user_id' => int, 'mutual' => Bool, ];

Or, if you're into Lua:

contact={_='contact', user_id=int, mutual=Bool, }