Class: Kaltura::KalturaEntryCaptionAdvancedFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb

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

#has_captionObject

Returns the value of attribute has_caption.



1034
1035
1036
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1034

def has_caption
  @has_caption
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1040
1041
1042
1043
1044
1045
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1040

def from_xml(xml_element)
	super
	if xml_element.elements['hasCaption'] != nil
		self.has_caption = xml_element.elements['hasCaption'].text
	end
end