Class: Kaltura::KalturaBeaconEnhanceFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_plugins/kaltura_beacon_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#external_elastic_query_objectObject

Returns the value of attribute external_elastic_query_object.



196
197
198
# File 'lib/kaltura_plugins/kaltura_beacon_client_plugin.rb', line 196

def external_elastic_query_object
  @external_elastic_query_object
end

#index_type_equalObject

Returns the value of attribute index_type_equal.



197
198
199
# File 'lib/kaltura_plugins/kaltura_beacon_client_plugin.rb', line 197

def index_type_equal
  @index_type_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



200
201
202
203
204
205
206
207
208
# File 'lib/kaltura_plugins/kaltura_beacon_client_plugin.rb', line 200

def from_xml(xml_element)
	super
	if xml_element.elements['externalElasticQueryObject'] != nil
		self.external_elastic_query_object = xml_element.elements['externalElasticQueryObject'].text
	end
	if xml_element.elements['indexTypeEqual'] != nil
		self.index_type_equal = xml_element.elements['indexTypeEqual'].text
	end
end