class Kaltura::KalturaBulkServiceFilterDataBase
Represents the Bulk service input for filter bulk upload
Attributes
filter[RW]
Filter for extracting the objects list to upload
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBulkServiceData#from_xml
# File lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb, line 40 def from_xml(xml_element) super if xml_element.elements['filter'] != nil self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaFilter') end end