MessageActionGroupCall

class pyrogram.raw.types.MessageActionGroupCall

The group call has ended

Constructor of MessageAction.

Details:
  • Layer: 227

  • 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
├── call → InputGroupCall
│ ├── InputGroupCall
│ │ ├── id → long
│ │ └── access_hash → long
│ ├── InputGroupCallSlug
│ │ └── slug → string
│ └── msg_id → int
└── duration → int (optional)

Example

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