class Kaltura::KalturaIndexAdvancedFilter
Attributes
depth_greater_than_equal[RW]
index_id_greater_than[RW]
Public Instance Methods
depth_greater_than_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 13795 def depth_greater_than_equal=(val) @depth_greater_than_equal = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaSearchItem#from_xml
# File lib/kaltura_types.rb, line 13799 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
index_id_greater_than=(val)
click to toggle source
# File lib/kaltura_types.rb, line 13792 def index_id_greater_than=(val) @index_id_greater_than = val.to_i end