ChannelAdminLogEventActionStartGroupCall

class pyrogram.raw.types.ChannelAdminLogEventActionStartGroupCall

A group call was started

Constructor of ChannelAdminLogEventAction.

Details:
  • Layer: 227

  • ID: 23209745

Parameters:

call (InputGroupCall) – Group call

TL Schema

channelAdminLogEventActionStartGroupCall#23209745
call:InputGroupCall

= ChannelAdminLogEventAction

Parameter Tree

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

Example

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