contacts.DeleteContacts
- class pyrogram.raw.functions.contacts.DeleteContacts
Deletes several contacts from the list.
- Details:
Layer:
223ID:
96A0E00
TL Schema
contacts.deleteContacts#96a0e00
id:Vector<InputUser>
= Updates
Parameter Tree
DeleteContacts
└── id →
Vector < InputUser >├──
InputUserEmpty├──
InputUserSelf├──
InputUser│ ├── user_id →
long│ └── access_hash →
long├── peer →
InputPeer│ ├──
InputPeerEmpty│ ├──
InputPeerSelf│ ├──
InputPeerChat│ ├──
InputPeerUser│ ├──
InputPeerChannel│ ├──
InputPeerUserFromMessage├── msg_id →
int└── user_id →
longExample
await app.invoke(
DeleteContacts(
id=[
await app.resolve_user(chat_id)
],
)
)