Class: Kaltura::KalturaScheduleEventResourceFilter

Inherits:
KalturaScheduleEventResourceBaseFilter show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaScheduleEventResourceBaseFilter

#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #event_id_equal, #event_id_in, #resource_id_equal, #resource_id_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#event_id_or_its_parent_id_equalObject

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



1105
1106
1107
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1105

def event_id_or_its_parent_id_equal
  @event_id_or_its_parent_id_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1111
1112
1113
1114
1115
1116
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1111

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