phone.DeleteGroupCallMessages
- class pyrogram.raw.functions.phone.DeleteGroupCallMessages
{schema}
- Details:
Layer:
223ID:
F64F54F7
- Parameters:
call (
InputGroupCall)messages (List of
int32-bit)report_spam (
bool, optional)
- Returns:
TL Schema
phone.deleteGroupCallMessages#f64f54f7
flags:#
report_spam:flags.0?true
call:InputGroupCall
messages:Vector<int>
= Updates
Parameter Tree
DeleteGroupCallMessages
├── report_spam →
true (optional)├── call →
InputGroupCall│ ├──
InputGroupCall│ │ ├── id →
long│ │ └── access_hash →
long│ ├──
InputGroupCallSlug│ │ └── slug →
string│ └── msg_id →
int└── messages →
Vector < int >Example
await app.invoke(
DeleteGroupCallMessages(
report_spam=None,
call=InputGroupCall(
id=0,
access_hash=0
),
messages=[0],
)
)