ChannelAdminLogEventActionDiscardGroupCall

class pyrogram.raw.types.ChannelAdminLogEventActionDiscardGroupCall

A group call was terminated

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: DB9F9140

Parameters:

call (InputGroupCall) – The group call that was terminated

TL Schema

channelAdminLogEventActionDiscardGroupCall#db9f9140
call:InputGroupCall

= ChannelAdminLogEventAction

Parameter Tree

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

Example

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