Class: TD::Types::InternalLinkType::VideoChat

Inherits:
TD::Types::InternalLinkType show all
Defined in:
lib/tdlib/types/internal_link_type/video_chat.rb

Overview

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.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#chat_usernameTD::Types::String

Username of the chat with the video chat.



11
12
13
# File 'lib/tdlib/types/internal_link_type/video_chat.rb', line 11

def chat_username
  @chat_username
end

#invite_hashTD::Types::String

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



11
12
13
# File 'lib/tdlib/types/internal_link_type/video_chat.rb', line 11

def invite_hash
  @invite_hash
end

#is_live_streamBoolean

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



11
12
13
# File 'lib/tdlib/types/internal_link_type/video_chat.rb', line 11

def is_live_stream
  @is_live_stream
end