phone.DiscardGroupCall

class pyrogram.raw.functions.phone.DiscardGroupCall

Terminate a group call

Details:
  • Layer: 227

  • ID: 7A777135

Parameters:

call (InputGroupCall) – The group call to terminate

Returns:

Updates

TL Schema

phone.discardGroupCall#7a777135
call:InputGroupCall

= Updates

Parameter Tree

DiscardGroupCall
└── call → InputGroupCall
├── InputGroupCall
│ ├── id → long
│ └── access_hash → long
│ └── slug → string
└── msg_id → int

Example

await app.invoke(
    DiscardGroupCall(
        call=InputGroupCall(
            id=0,
            access_hash=0
        ),
    )
)