class Kaltura::KalturaEntryVendorTaskCsvJobData

Attributes

filter[RW]

The filter should return the list of users that need to be specified in the csv.

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 1272
def from_xml(xml_element)
        super
        if xml_element.elements['filter'] != nil
                self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaEntryVendorTaskFilter')
        end
end