Class: Kaltura::KalturaEntryScheduleEventFilter

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

Instance Attribute Summary collapse

Attributes inherited from KalturaEntryScheduleEventBaseFilter

#category_ids_like, #category_ids_multi_like_and, #category_ids_multi_like_or, #entry_ids_like, #entry_ids_multi_like_and, #entry_ids_multi_like_or, #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

#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

#parent_category_ids_likeObject

Returns the value of attribute parent_category_ids_like.



1224
1225
1226
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1224

def parent_category_ids_like
  @parent_category_ids_like
end

#parent_category_ids_multi_like_andObject

Returns the value of attribute parent_category_ids_multi_like_and.



1226
1227
1228
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1226

def parent_category_ids_multi_like_and
  @parent_category_ids_multi_like_and
end

#parent_category_ids_multi_like_orObject

Returns the value of attribute parent_category_ids_multi_like_or.



1225
1226
1227
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1225

def parent_category_ids_multi_like_or
  @parent_category_ids_multi_like_or
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1229

def from_xml(xml_element)
  super
  if xml_element.elements['parentCategoryIdsLike'] != nil
    self.parent_category_ids_like = xml_element.elements['parentCategoryIdsLike'].text
  end
  if xml_element.elements['parentCategoryIdsMultiLikeOr'] != nil
    self.parent_category_ids_multi_like_or = xml_element.elements['parentCategoryIdsMultiLikeOr'].text
  end
  if xml_element.elements['parentCategoryIdsMultiLikeAnd'] != nil
    self.parent_category_ids_multi_like_and = xml_element.elements['parentCategoryIdsMultiLikeAnd'].text
  end
end