Class: Kaltura::KalturaBeaconEnhanceFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaBeaconEnhanceFilter
- Defined in:
- lib/kaltura_plugins/kaltura_beacon_client_plugin.rb
Instance Attribute Summary collapse
-
#external_elastic_query_object ⇒ Object
Returns the value of attribute external_elastic_query_object.
-
#index_type_equal ⇒ Object
Returns the value of attribute index_type_equal.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#external_elastic_query_object ⇒ Object
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_equal ⇒ Object
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 |