Class: TD::Types::InternalLinkType::VideoChat
- Inherits:
-
TD::Types::InternalLinkType
- Object
- Dry::Struct
- Base
- TD::Types::InternalLinkType
- TD::Types::InternalLinkType::VideoChat
- 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
-
#chat_username ⇒ TD::Types::String
Username of the chat with the video chat.
-
#invite_hash ⇒ TD::Types::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.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_username ⇒ TD::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_hash ⇒ TD::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_stream ⇒ Boolean
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 |