Class: Kaltura::KalturaAlignmentVendorTaskData
- Inherits:
-
KalturaVendorTaskDataCaptionAsset
- Object
- KalturaObjectBase
- KalturaVendorTaskData
- KalturaVendorTaskDataCaptionAsset
- Kaltura::KalturaAlignmentVendorTaskData
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Instance Attribute Summary collapse
-
#json_transcript_asset_id ⇒ Object
Optional - The id of the json transcript object the vendor should update once alignment task processing is done.
-
#text_transcript_asset_id ⇒ Object
The id of the text transcript object the vendor should use while runing the alignment task.
Attributes inherited from KalturaVendorTaskDataCaptionAsset
Attributes inherited from KalturaVendorTaskData
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#json_transcript_asset_id ⇒ Object
Optional - The id of the json transcript object the vendor should update once alignment task processing is done
1075 1076 1077 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1075 def json_transcript_asset_id @json_transcript_asset_id end |
#text_transcript_asset_id ⇒ Object
The id of the text transcript object the vendor should use while runing the alignment task
1073 1074 1075 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1073 def text_transcript_asset_id @text_transcript_asset_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1078 1079 1080 1081 1082 1083 1084 1085 1086 |
# 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 |