class Kaltura::KalturaMixEntry
Attributes
data_content[RW]
The xml data of the mix
editor_type[RW]
The editor type used to edit the metadata
has_real_thumbnail[RW]
Indicates whether the user has submited a real thumbnail to the mix (Not the one that was generated automaticaly)
Public Instance Methods
editor_type=(val)
click to toggle source
# File lib/kaltura_types.rb, line 7815 def editor_type=(val) @editor_type = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaPlayableEntry#from_xml
# File lib/kaltura_types.rb, line 7819 def from_xml(xml_element) super if xml_element.elements['hasRealThumbnail'] != nil self.has_real_thumbnail = xml_element.elements['hasRealThumbnail'].text end if xml_element.elements['editorType'] != nil self.editor_type = xml_element.elements['editorType'].text end if xml_element.elements['dataContent'] != nil self.data_content = xml_element.elements['dataContent'].text end end
has_real_thumbnail=(val)
click to toggle source
# File lib/kaltura_types.rb, line 7812 def has_real_thumbnail=(val) @has_real_thumbnail = to_b(val) end