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



1316
1317
1318
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1316

def event_id_or_its_parent_id_equal
  @event_id_or_its_parent_id_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1322
1323
1324
1325
1326
1327
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1322

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