class Kaltura::KalturaScheduleEventResourceFilter

Attributes

event_id_or_its_parent_id_equal[RW]

Find event-resource objects that associated with the event, if none found, find by its parent event

Public Instance Methods

event_id_or_its_parent_id_equal=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 1170
def event_id_or_its_parent_id_equal=(val)
        @event_id_or_its_parent_id_equal = val.to_i
end
from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 1174
def from_xml(xml_element)
        super
        if xml_element.elements['eventIdOrItsParentIdEqual'] != nil
                self.event_id_or_its_parent_id_equal = xml_element.elements['eventIdOrItsParentIdEqual'].text
        end
end