Class: Kaltura::KalturaThumbCuePoint

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

Instance Attribute Summary collapse

Attributes inherited from KalturaCuePoint

#created_at, #cue_point_type, #entry_id, #force_stop, #id, #partner_data, #partner_id, #partner_sort_value, #start_time, #status, #system_name, #tags, #thumb_offset, #triggered_at, #updated_at, #user_id

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#asset_idObject

Returns the value of attribute asset_id.



58
59
60
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 58

def asset_id
  @asset_id
end

#descriptionObject

Returns the value of attribute description.



59
60
61
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 59

def description
  @description
end

#sub_typeObject

The sub type of the ThumbCuePoint



63
64
65
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 63

def sub_type
  @sub_type
end

#titleObject

Returns the value of attribute title.



60
61
62
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 60

def title
  @title
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



69
70
71
72
73
74
75
# File 'lib/kaltura_plugins/kaltura_thumb_cue_point_client_plugin.rb', line 69

def from_xml(xml_element)
	super
	self.asset_id = xml_element.elements['assetId'].text
	self.description = xml_element.elements['description'].text
	self.title = xml_element.elements['title'].text
	self.sub_type = xml_element.elements['subType'].text
end