Layer 220
MessageActionConferenceCall
Represents a conference call (or an invitation to a conference call, if neither the missed nor active flags are set).
constructor
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| Missed | flags.0?true | Whether the conference call has ended and the user hasn't joined. |
| Active | flags.1?true | Whether the user is currently in the conference call. |
| Video | flags.4?true | Whether this is a video conference call. |
| CallId | long | Call ID. |
| Duration | flags.2?int | Call duration, for left calls only. |
| OtherParticipants | Vector<Peer> | Identifiers of some other call participants. |
Returns
MessageActionGogram Example
// Creating MessageActionConferenceCall constructor obj := &tg.MessageActionConferenceCall{ CallId: int64(0), // Optional fields: // Missed: true, // Active: true, // Video: true, // Duration: 0, // ... more optional fields }