phone.DiscardGroupCall

class pyrogram.raw.functions.phone.DiscardGroupCall

Terminate a group call

Details:
  • Layer: 223

  • ID: 7A777135

Parameters:

call (InputGroupCall) – The group call to terminate

Returns:

Updates

TL Schema

phone.discardGroupCall#7a777135
call:InputGroupCall

= Updates

Parameter Tree

DiscardGroupCall
└── callInputGroupCall
├── InputGroupCall
│ ├── idlong
│ └── access_hashlong
│ └── slugstring
└── msg_idint

Example

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