Class: Kaltura::KalturaIndexAdvancedFilter

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

Direct Known Subclasses

KalturaEntryIndexAdvancedFilter

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

#depth_greater_than_equalObject

Returns the value of attribute depth_greater_than_equal.



13228
13229
13230
# File 'lib/kaltura_types.rb', line 13228

def depth_greater_than_equal
  @depth_greater_than_equal
end

#index_id_greater_thanObject

Returns the value of attribute index_id_greater_than.



13227
13228
13229
# File 'lib/kaltura_types.rb', line 13227

def index_id_greater_than
  @index_id_greater_than
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13237
13238
13239
13240
13241
13242
13243
13244
13245
# File 'lib/kaltura_types.rb', line 13237

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