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.



1038
1039
1040
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1038

def has_caption
  @has_caption
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1044
1045
1046
1047
1048
1049
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1044

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