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.



1031
1032
1033
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1031

def has_caption
  @has_caption
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



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

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