Interface MessageInviteVideoChatParticipants

A message with information about an invitation to a video chat. Subtype of MessageContent.

interface MessageInviteVideoChatParticipants {
    @type: "messageInviteVideoChatParticipants";
    group_call_id: number;
    user_ids: number[];
}

Properties

@type: "messageInviteVideoChatParticipants"
group_call_id: number

Identifier of the video chat. The video chat can be received through the method getGroupCall.

user_ids: number[]

Invited user identifiers.