MessageActionGroupCallScheduled

class pyrogram.raw.types.MessageActionGroupCallScheduled

A group call was scheduled

Constructor of MessageAction.

Details:
  • Layer: 223

  • ID: B3A07661

Parameters:
  • call (InputGroupCall) – The group call

  • schedule_date (int 32-bit) – When is this group call scheduled to start

TL Schema

messageActionGroupCallScheduled#b3a07661
call:InputGroupCall
schedule_date:int

= MessageAction

Parameter Tree

MessageActionGroupCallScheduled
├── callInputGroupCall
│ ├── InputGroupCall
│ │ ├── idlong
│ │ └── access_hashlong
│ ├── InputGroupCallSlug
│ │ └── slugstring
│ └── msg_idint
└── schedule_dateint

Example

MessageActionGroupCallScheduled(
    call=InputGroupCall(
        id=0,
        access_hash=0
    ),
    schedule_date=0,
)