Class: Kaltura::KalturaCategoryEntryAdvancedFilter

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

Instance Attribute Summary collapse

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_match_orObject

Returns the value of attribute categories_match_or.



7737
7738
7739
# File 'lib/kaltura_types.rb', line 7737

def categories_match_or
  @categories_match_or
end

#category_entry_status_inObject

Returns the value of attribute category_entry_status_in.



7738
7739
7740
# File 'lib/kaltura_types.rb', line 7738

def category_entry_status_in
  @category_entry_status_in
end

#category_id_equalObject

Returns the value of attribute category_id_equal.



7740
7741
7742
# File 'lib/kaltura_types.rb', line 7740

def category_id_equal
  @category_id_equal
end

#order_byObject

Returns the value of attribute order_by.



7739
7740
7741
# File 'lib/kaltura_types.rb', line 7739

def order_by
  @order_by
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



7746
7747
7748
7749
7750
7751
7752
# File 'lib/kaltura_types.rb', line 7746

def from_xml(xml_element)
	super
	self.categories_match_or = xml_element.elements['categoriesMatchOr'].text
	self.category_entry_status_in = xml_element.elements['categoryEntryStatusIn'].text
	self.order_by = xml_element.elements['orderBy'].text
	self.category_id_equal = xml_element.elements['categoryIdEqual'].text
end