ChannelAdminLogEventActionDiscardGroupCall

class pyrogram.raw.types.ChannelAdminLogEventActionDiscardGroupCall

A group call was terminated

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 223

  • ID: DB9F9140

Parameters:

call (InputGroupCall) – The group call that was terminated

TL Schema

channelAdminLogEventActionDiscardGroupCall#db9f9140
call:InputGroupCall

= ChannelAdminLogEventAction

Parameter Tree

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

Example

ChannelAdminLogEventActionDiscardGroupCall(
    call=InputGroupCall(
        id=0,
        access_hash=0
    ),
)