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



1028
1029
1030
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1028

def caption_asset_id
  @caption_asset_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1031
1032
1033
1034
1035
1036
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1031

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