Interface InternalLinkTypeVideoChat

The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGroupCall with the given invite hash to process the link. Subtype of InternalLinkType.

interface InternalLinkTypeVideoChat {
    @type: "internalLinkTypeVideoChat";
    chat_username: string;
    invite_hash: string;
    is_live_stream?: boolean;
}

Properties

@type: "internalLinkTypeVideoChat"
chat_username: string

Username of the chat with the video chat.

invite_hash: string

If non-empty, invite hash to be used to join the video chat without being muted by administrators.

is_live_stream?: boolean

True, if the video chat is expected to be a live stream in a channel or a broadcast group.