Interface VideoChat

Describes a video chat.

interface VideoChat {
    @type: "videoChat";
    default_participant_id: MessageSender;
    group_call_id: number;
    has_participants?: boolean;
}

Properties

@type: "videoChat"
default_participant_id: MessageSender

Default group call participant identifier to join the video chat; may be null.

group_call_id: number

Group call identifier of an active video chat; 0 if none. Full information about the video chat can be received through the method getGroupCall.

has_participants?: boolean

True, if the video chat has participants.