Class: Kaltura::KalturaTimedThumbAsset

Inherits:
KalturaThumbAsset show all
Defined in:
lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaThumbAsset

#height, #status, #thumb_params_id, #width

Attributes inherited from KalturaAsset

#actual_source_asset_params_ids, #created_at, #deleted_at, #description, #entry_id, #file_ext, #id, #partner_data, #partner_description, #partner_id, #size, #tags, #updated_at, #version

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_idObject

Associated thumb cue point ID



90
91
92
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 90

def cue_point_id
  @cue_point_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



93
94
95
96
97
98
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 93

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