class Kaltura::KalturaSwfFlavorParamsOutput
Attributes
flash_version[RW]
poly2bitmap[RW]
Public Instance Methods
flash_version=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_document_client_plugin.rb, line 287 def flash_version=(val) @flash_version = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_document_client_plugin.rb, line 294 def from_xml(xml_element) super if xml_element.elements['flashVersion'] != nil self.flash_version = xml_element.elements['flashVersion'].text end if xml_element.elements['poly2Bitmap'] != nil self.poly2bitmap = xml_element.elements['poly2Bitmap'].text end end
poly2bitmap=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_document_client_plugin.rb, line 290 def poly2bitmap=(val) @poly2bitmap = to_b(val) end