Class: Kaltura::KalturaIndexAdvancedFilter
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaIndexAdvancedFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#depth_greater_than_equal ⇒ Object
Returns the value of attribute depth_greater_than_equal.
-
#index_id_greater_than ⇒ Object
Returns the value of attribute index_id_greater_than.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#depth_greater_than_equal ⇒ Object
Returns the value of attribute depth_greater_than_equal.
14033 14034 14035 |
# File 'lib/kaltura_types.rb', line 14033 def depth_greater_than_equal @depth_greater_than_equal end |
#index_id_greater_than ⇒ Object
Returns the value of attribute index_id_greater_than.
14032 14033 14034 |
# File 'lib/kaltura_types.rb', line 14032 def index_id_greater_than @index_id_greater_than end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14042 14043 14044 14045 14046 14047 14048 14049 14050 |
# File 'lib/kaltura_types.rb', line 14042 def from_xml(xml_element) super if xml_element.elements['indexIdGreaterThan'] != nil self.index_id_greater_than = xml_element.elements['indexIdGreaterThan'].text end if xml_element.elements['depthGreaterThanEqual'] != nil self.depth_greater_than_equal = xml_element.elements['depthGreaterThanEqual'].text end end |