MessageActionConferenceCall

class pyrogram.raw.types.MessageActionConferenceCall

Represents a conference call (or an invitation to a conference call, if neither the missed nor active flags are set).

Constructor of MessageAction.

Details:
  • Layer: 223

  • ID: 2FFE2F7A

Parameters:
  • call_id (int 64-bit) – Call ID.

  • missed (bool, optional) – Whether the conference call has ended and the user hasn’t joined.

  • active (bool, optional) – Whether the user is currently in the conference call.

  • video (bool, optional) – Whether this is a video conference call.

  • duration (int 32-bit, optional) – Call duration, for left calls only.

  • other_participants (List of Peer, optional) – Identifiers of some other call participants.

TL Schema

messageActionConferenceCall#2ffe2f7a
flags:#
missed:flags.0?true
active:flags.1?true
video:flags.4?true
call_id:long
duration:flags.2?int
other_participants:flags.3?Vector<Peer>

= MessageAction

Parameter Tree

MessageActionConferenceCall
├── missedtrue (optional)
├── activetrue (optional)
├── videotrue (optional)
├── call_idlong
├── durationint (optional)
└── other_participantsVector < Peer > (optional)
├── PeerUser
│ └── user_idlong
├── PeerChat
│ └── chat_idlong
└── PeerChannel
└── channel_idlong

Example

MessageActionConferenceCall(
    call_id=0,
)