ImportedContact

class pyrogram.raw.types.ImportedContact

Successfully imported contact.

Constructor of ImportedContact.

Details:
  • Layer: 223

  • ID: C13E3C50

Parameters:
  • user_id (int 64-bit) – User identifier

  • client_id (int 64-bit) – The contact’s client identifier (passed to one of the InputContact constructors)

TL Schema

importedContact#c13e3c50
user_id:long
client_id:long

= ImportedContact

Parameter Tree

ImportedContact
├── user_idlong
└── client_idlong

Example

ImportedContact(
    user_id=0,
    client_id=0,
)