class Kaltura::KalturaBulkServiceFilterData
Represents the Bulk service input for filter bulk upload
Attributes
template_object[RW]
Template object for new object creation
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBulkServiceFilterDataBase#from_xml
# File lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb, line 72 def from_xml(xml_element) super if xml_element.elements['templateObject'] != nil self.template_object = KalturaClientBase.object_from_xml(xml_element.elements['templateObject'], 'KalturaObjectBase') end end