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



1059
1060
1061
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1059

def caption_asset_id
  @caption_asset_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1062
1063
1064
1065
1066
1067
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1062

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