Class: Kaltura::KalturaVendorTaskDataCaptionAsset

Inherits:
KalturaVendorTaskData show all
Defined in:
lib/kaltura_plugins/kaltura_reach_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaVendorTaskData

#entry_duration

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#caption_asset_idObject

Optional - The id of the caption asset object



1093
1094
1095
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1093

def caption_asset_id
  @caption_asset_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1096
1097
1098
1099
1100
1101
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1096

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