Class: Kaltura::KalturaCategoryEntryAdvancedFilter
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaCategoryEntryAdvancedFilter
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#categories_match_or ⇒ Object
Returns the value of attribute categories_match_or.
-
#category_entry_status_in ⇒ Object
Returns the value of attribute category_entry_status_in.
-
#category_id_equal ⇒ Object
Returns the value of attribute category_id_equal.
-
#order_by ⇒ Object
Returns the value of attribute order_by.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#categories_match_or ⇒ Object
Returns the value of attribute categories_match_or.
12107 12108 12109 |
# File 'lib/kaltura_types.rb', line 12107 def categories_match_or @categories_match_or end |
#category_entry_status_in ⇒ Object
Returns the value of attribute category_entry_status_in.
12108 12109 12110 |
# File 'lib/kaltura_types.rb', line 12108 def category_entry_status_in @category_entry_status_in end |
#category_id_equal ⇒ Object
Returns the value of attribute category_id_equal.
12110 12111 12112 |
# File 'lib/kaltura_types.rb', line 12110 def category_id_equal @category_id_equal end |
#order_by ⇒ Object
Returns the value of attribute order_by.
12109 12110 12111 |
# File 'lib/kaltura_types.rb', line 12109 def order_by @order_by end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 |
# File 'lib/kaltura_types.rb', line 12116 def from_xml(xml_element) super if xml_element.elements['categoriesMatchOr'] != nil self.categories_match_or = xml_element.elements['categoriesMatchOr'].text end if xml_element.elements['categoryEntryStatusIn'] != nil self.category_entry_status_in = xml_element.elements['categoryEntryStatusIn'].text end if xml_element.elements['orderBy'] != nil self.order_by = xml_element.elements['orderBy'].text end if xml_element.elements['categoryIdEqual'] != nil self.category_id_equal = xml_element.elements['categoryIdEqual'].text end end |