class Kaltura::KalturaQuizFilter

Attributes

entry_id_equal[RW]

This filter should be in use for retrieving only a specific quiz entry (identified by its entryId).

entry_id_in[RW]

This filter should be in use for retrieving few specific quiz entries (string should include comma separated list of entryId strings).

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_quiz_client_plugin.rb, line 300
def from_xml(xml_element)
        super
        if xml_element.elements['entryIdEqual'] != nil
                self.entry_id_equal = xml_element.elements['entryIdEqual'].text
        end
        if xml_element.elements['entryIdIn'] != nil
                self.entry_id_in = xml_element.elements['entryIdIn'].text
        end
end