class Twitch::VideoStreamMarkers
A video with a list of markers.
Attributes
markers[R]
video_id[R]
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/twitch/stream_marker.rb, line 43 def initialize(attributes = {}) @video_id = attributes['video_id'] @markers = attributes['markers'].map{ |m| StreamMarker.new(m) } end