Contact

class pyrogram.raw.base.Contact

A contact of the current user.

Constructors:

This base type has 1 constructor available.

Contact

A contact of the current user that is registered in the system.

TL Schema

contact#145ade0b
user_id:long
mutual:Bool

= Contact

Parameter Tree

Contact
├── user_idlong
└── mutualBool

Example

Contact(
    user_id=0,
    mutual=True,
)