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



1309
1310
1311
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1309

def event_id_or_its_parent_id_equal
  @event_id_or_its_parent_id_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



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

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