Class: Kaltura::KalturaEntryCuePointSearchFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_types.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

#cue_point_sub_type_equalObject

Returns the value of attribute cue_point_sub_type_equal.



12814
12815
12816
# File 'lib/kaltura_types.rb', line 12814

def cue_point_sub_type_equal
  @cue_point_sub_type_equal
end

#cue_point_type_inObject

Returns the value of attribute cue_point_type_in.



12813
12814
12815
# File 'lib/kaltura_types.rb', line 12813

def cue_point_type_in
  @cue_point_type_in
end

#cue_points_free_textObject

Returns the value of attribute cue_points_free_text.



12812
12813
12814
# File 'lib/kaltura_types.rb', line 12812

def cue_points_free_text
  @cue_points_free_text
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
# File 'lib/kaltura_types.rb', line 12820

def from_xml(xml_element)
	super
	if xml_element.elements['cuePointsFreeText'] != nil
		self.cue_points_free_text = xml_element.elements['cuePointsFreeText'].text
	end
	if xml_element.elements['cuePointTypeIn'] != nil
		self.cue_point_type_in = xml_element.elements['cuePointTypeIn'].text
	end
	if xml_element.elements['cuePointSubTypeEqual'] != nil
		self.cue_point_sub_type_equal = xml_element.elements['cuePointSubTypeEqual'].text
	end
end