class Kaltura::KalturaAlignmentVendorTaskData
Attributes
json_transcript_asset_id[RW]
Optional - The id of the json transcript object the vendor should update once alignment task processing is done
text_transcript_asset_id[RW]
The id of the text transcript object the vendor should use while runing the alignment task
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaVendorTaskDataCaptionAsset#from_xml
# File lib/kaltura_plugins/kaltura_reach_client_plugin.rb, line 1078 def from_xml(xml_element) super if xml_element.elements['textTranscriptAssetId'] != nil self.text_transcript_asset_id = xml_element.elements['textTranscriptAssetId'].text end if xml_element.elements['jsonTranscriptAssetId'] != nil self.json_transcript_asset_id = xml_element.elements['jsonTranscriptAssetId'].text end end