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:
223ID:
2FFE2F7A
- Parameters:
call_id (
int64-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 (
int32-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
├── missed →
true (optional)├── active →
true (optional)├── video →
true (optional)├── call_id →
long├── duration →
int (optional)└── other_participants →
Vector < Peer > (optional)├──
PeerUser│ └── user_id →
long├──
PeerChat│ └── chat_id →
long└──
PeerChannel└── channel_id →
longExample
MessageActionConferenceCall(
call_id=0,
)