class Kaltura::KalturaObjectTask
Attributes
stop_processing_on_error[RW]
type[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb, line 95 def from_xml(xml_element) super if xml_element.elements['type'] != nil self.type = xml_element.elements['type'].text end if xml_element.elements['stopProcessingOnError'] != nil self.stop_processing_on_error = xml_element.elements['stopProcessingOnError'].text end end
stop_processing_on_error=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_scheduled_task_client_plugin.rb, line 91 def stop_processing_on_error=(val) @stop_processing_on_error = to_b(val) end