Class: TD::Types::VoiceChat
- Defined in:
- lib/tdlib/types/voice_chat.rb
Overview
Describes a voice chat.
Instance Attribute Summary collapse
-
#default_participant_id ⇒ TD::Types::MessageSender?
Default group call participant identifier to join the voice chat; may be null.
-
#group_call_id ⇒ Integer
Group call identifier of an active voice chat; 0 if none.
-
#has_participants ⇒ Boolean
True, if the voice chat has participants.
Method Summary
Methods inherited from Base
Instance Attribute Details
#default_participant_id ⇒ TD::Types::MessageSender?
Default group call participant identifier to join the voice chat; may be null.
9 10 11 |
# File 'lib/tdlib/types/voice_chat.rb', line 9 def default_participant_id @default_participant_id end |
#group_call_id ⇒ Integer
Group call identifier of an active voice chat; 0 if none. Full informationa about the voice chat can be received through the method getGroupCall.
9 10 11 |
# File 'lib/tdlib/types/voice_chat.rb', line 9 def group_call_id @group_call_id end |
#has_participants ⇒ Boolean
True, if the voice chat has participants.
9 10 11 |
# File 'lib/tdlib/types/voice_chat.rb', line 9 def has_participants @has_participants end |