MessageActionGroupCall

class pyrogram.raw.types.MessageActionGroupCall

The group call has ended

Constructor of MessageAction.

Details:
  • Layer: 223

  • ID: 7A0D7F42

Parameters:
  • call (InputGroupCall) – Group call

  • duration (int 32-bit, optional) – Group call duration

TL Schema

messageActionGroupCall#7a0d7f42
flags:#
call:InputGroupCall
duration:flags.0?int

= MessageAction

Parameter Tree

MessageActionGroupCall
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── durationint (optional)

Example

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