class Kaltura::KalturaLiveChannel

Attributes

playlist_id[RW]

Playlist id to be played

repeat[RW]

Indicates that the segments should be repeated for ever

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaLiveEntry#from_xml
# File lib/kaltura_types.rb, line 6543
def from_xml(xml_element)
        super
        if xml_element.elements['playlistId'] != nil
                self.playlist_id = xml_element.elements['playlistId'].text
        end
        if xml_element.elements['repeat'] != nil
                self.repeat = xml_element.elements['repeat'].text
        end
end
repeat=(val) click to toggle source
# File lib/kaltura_types.rb, line 6539
def repeat=(val)
        @repeat = val.to_i
end