Class: Kaltura::KalturaScheduleEventResourceFilter
- Inherits:
-
KalturaScheduleEventResourceBaseFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaScheduleEventResourceBaseFilter
- Kaltura::KalturaScheduleEventResourceFilter
- Defined in:
- lib/kaltura_plugins/kaltura_schedule_client_plugin.rb
Instance Attribute Summary collapse
-
#event_id_or_its_parent_id_equal ⇒ Object
Find event-resource objects that associated with the event, if none found, find by its parent event.
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
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#event_id_or_its_parent_id_equal ⇒ Object
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 |