Class: Kaltura::KalturaBaseEntryFilter

Inherits:
KalturaBaseEntryBaseFilter show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaBaseEntryBaseFilter

#access_control_id_equal, #access_control_id_in, #admin_tags_like, #admin_tags_multi_like_and, #admin_tags_multi_like_or, #categories_ids_empty, #categories_ids_match_and, #categories_ids_match_or, #categories_ids_not_contains, #categories_match_and, #categories_match_or, #categories_not_contains, #created_at_greater_than_or_equal, #created_at_less_than_or_equal, #creator_id_equal, #end_date_greater_than_or_equal, #end_date_greater_than_or_equal_or_null, #end_date_less_than_or_equal, #end_date_less_than_or_equal_or_null, #entitled_users_edit_match_and, #entitled_users_publish_match_and, #group_id_equal, #id_equal, #id_in, #id_not_in, #moderation_status_equal, #moderation_status_in, #moderation_status_not_equal, #moderation_status_not_in, #name_equal, #name_like, #name_multi_like_and, #name_multi_like_or, #parent_entry_id_equal, #partner_id_equal, #partner_id_in, #partner_sort_value_greater_than_or_equal, #partner_sort_value_less_than_or_equal, #reference_id_equal, #reference_id_in, #replaced_entry_id_equal, #replaced_entry_id_in, #replacement_status_equal, #replacement_status_in, #replacing_entry_id_equal, #replacing_entry_id_in, #root_entry_id_equal, #root_entry_id_in, #search_text_match_and, #search_text_match_or, #start_date_greater_than_or_equal, #start_date_greater_than_or_equal_or_null, #start_date_less_than_or_equal, #start_date_less_than_or_equal_or_null, #status_equal, #status_in, #status_not_equal, #status_not_in, #tags_admin_tags_multi_like_and, #tags_admin_tags_multi_like_or, #tags_admin_tags_name_multi_like_and, #tags_admin_tags_name_multi_like_or, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #tags_name_multi_like_and, #tags_name_multi_like_or, #total_rank_greater_than_or_equal, #total_rank_less_than_or_equal, #type_equal, #type_in, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #user_id_in

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

#categories_full_name_inObject

Returns the value of attribute categories_full_name_in.



3950
3951
3952
# File 'lib/kaltura_types.rb', line 3950

def categories_full_name_in
  @categories_full_name_in
end

#category_ancestor_id_inObject

All entries within this categoy or in child categories



3953
3954
3955
# File 'lib/kaltura_types.rb', line 3953

def category_ancestor_id_in
  @category_ancestor_id_in
end

#free_textObject

Returns the value of attribute free_text.



3948
3949
3950
# File 'lib/kaltura_types.rb', line 3948

def free_text
  @free_text
end

#is_rootObject

Returns the value of attribute is_root.



3949
3950
3951
# File 'lib/kaltura_types.rb', line 3949

def is_root
  @is_root
end

#redirect_from_entry_idObject

The id of the original entry



3956
3957
3958
# File 'lib/kaltura_types.rb', line 3956

def redirect_from_entry_id
  @redirect_from_entry_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3962
3963
3964
3965
3966
3967
3968
3969
# File 'lib/kaltura_types.rb', line 3962

def from_xml(xml_element)
	super
	self.free_text = xml_element.elements['freeText'].text
	self.is_root = xml_element.elements['isRoot'].text
	self.categories_full_name_in = xml_element.elements['categoriesFullNameIn'].text
	self.category_ancestor_id_in = xml_element.elements['categoryAncestorIdIn'].text
	self.redirect_from_entry_id = xml_element.elements['redirectFromEntryId'].text
end