Class: Kaltura::KalturaEntryScheduleEventBaseFilter
- Inherits:
-
KalturaScheduleEventFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- KalturaScheduleEventBaseFilter
- KalturaScheduleEventFilter
- Kaltura::KalturaEntryScheduleEventBaseFilter
- Defined in:
- lib/kaltura_plugins/kaltura_schedule_client_plugin.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#category_ids_like ⇒ Object
Returns the value of attribute category_ids_like.
-
#category_ids_multi_like_and ⇒ Object
Returns the value of attribute category_ids_multi_like_and.
-
#category_ids_multi_like_or ⇒ Object
Returns the value of attribute category_ids_multi_like_or.
-
#entry_ids_like ⇒ Object
Returns the value of attribute entry_ids_like.
-
#entry_ids_multi_like_and ⇒ Object
Returns the value of attribute entry_ids_multi_like_and.
-
#entry_ids_multi_like_or ⇒ Object
Returns the value of attribute entry_ids_multi_like_or.
-
#template_entry_id_equal ⇒ Object
Returns the value of attribute template_entry_id_equal.
Attributes inherited from KalturaScheduleEventFilter
#parent_resource_ids_like, #parent_resource_ids_multi_like_and, #parent_resource_ids_multi_like_or, #resource_id_equal, #resource_ids_like, #resource_ids_multi_like_and, #resource_ids_multi_like_or, #resource_system_names_like, #resource_system_names_multi_like_and, #resource_system_names_multi_like_or, #template_entry_categories_ids_like, #template_entry_categories_ids_multi_like_and, #template_entry_categories_ids_multi_like_or
Attributes inherited from KalturaScheduleEventBaseFilter
#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #end_date_greater_than_or_equal, #end_date_less_than_or_equal, #id_equal, #id_in, #id_not_in, #owner_id_equal, #owner_id_in, #parent_id_equal, #parent_id_in, #parent_id_not_in, #priority_equal, #priority_greater_than_or_equal, #priority_in, #priority_less_than_or_equal, #recurrence_type_equal, #recurrence_type_in, #reference_id_equal, #reference_id_in, #start_date_greater_than_or_equal, #start_date_less_than_or_equal, #status_equal, #status_in, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #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
#category_ids_like ⇒ Object
Returns the value of attribute category_ids_like.
1354 1355 1356 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1354 def category_ids_like @category_ids_like end |
#category_ids_multi_like_and ⇒ Object
Returns the value of attribute category_ids_multi_like_and.
1356 1357 1358 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1356 def category_ids_multi_like_and @category_ids_multi_like_and end |
#category_ids_multi_like_or ⇒ Object
Returns the value of attribute category_ids_multi_like_or.
1355 1356 1357 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1355 def category_ids_multi_like_or @category_ids_multi_like_or end |
#entry_ids_like ⇒ Object
Returns the value of attribute entry_ids_like.
1351 1352 1353 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1351 def entry_ids_like @entry_ids_like end |
#entry_ids_multi_like_and ⇒ Object
Returns the value of attribute entry_ids_multi_like_and.
1353 1354 1355 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1353 def entry_ids_multi_like_and @entry_ids_multi_like_and end |
#entry_ids_multi_like_or ⇒ Object
Returns the value of attribute entry_ids_multi_like_or.
1352 1353 1354 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1352 def entry_ids_multi_like_or @entry_ids_multi_like_or end |
#template_entry_id_equal ⇒ Object
Returns the value of attribute template_entry_id_equal.
1350 1351 1352 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1350 def template_entry_id_equal @template_entry_id_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 |
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1359 def from_xml(xml_element) super if xml_element.elements['templateEntryIdEqual'] != nil self.template_entry_id_equal = xml_element.elements['templateEntryIdEqual'].text end if xml_element.elements['entryIdsLike'] != nil self.entry_ids_like = xml_element.elements['entryIdsLike'].text end if xml_element.elements['entryIdsMultiLikeOr'] != nil self.entry_ids_multi_like_or = xml_element.elements['entryIdsMultiLikeOr'].text end if xml_element.elements['entryIdsMultiLikeAnd'] != nil self.entry_ids_multi_like_and = xml_element.elements['entryIdsMultiLikeAnd'].text end if xml_element.elements['categoryIdsLike'] != nil self.category_ids_like = xml_element.elements['categoryIdsLike'].text end if xml_element.elements['categoryIdsMultiLikeOr'] != nil self.category_ids_multi_like_or = xml_element.elements['categoryIdsMultiLikeOr'].text end if xml_element.elements['categoryIdsMultiLikeAnd'] != nil self.category_ids_multi_like_and = xml_element.elements['categoryIdsMultiLikeAnd'].text end end |