Class: TD::Types::GroupCallStream
- Defined in:
- lib/tdlib/types/group_call_stream.rb
Overview
Describes an available stream in a group call.
Instance Attribute Summary collapse
-
#channel_id ⇒ Integer
Identifier of an audio/video channel.
-
#scale ⇒ Integer
Scale of segment durations in the stream.
-
#time_offset ⇒ Integer
Point in time when the stream currently ends; Unix timestamp in milliseconds.
Method Summary
Methods inherited from Base
Instance Attribute Details
#channel_id ⇒ Integer
Identifier of an audio/video channel.
8 9 10 |
# File 'lib/tdlib/types/group_call_stream.rb', line 8 def channel_id @channel_id end |
#scale ⇒ Integer
Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds.
8 9 10 |
# File 'lib/tdlib/types/group_call_stream.rb', line 8 def scale @scale end |
#time_offset ⇒ Integer
Point in time when the stream currently ends; Unix timestamp in milliseconds.
8 9 10 |
# File 'lib/tdlib/types/group_call_stream.rb', line 8 def time_offset @time_offset end |