Class: Kaltura::KalturaParseMultiLanguageCaptionAssetJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaParseMultiLanguageCaptionAssetJobData
- Defined in:
- lib/kaltura_plugins/kaltura_caption_client_plugin.rb
Instance Attribute Summary collapse
-
#entry_id ⇒ Object
Returns the value of attribute entry_id.
-
#file_encryption_key ⇒ Object
Returns the value of attribute file_encryption_key.
-
#file_location ⇒ Object
Returns the value of attribute file_location.
-
#multi_lanaguage_caption_asset_id ⇒ Object
Returns the value of attribute multi_lanaguage_caption_asset_id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_id ⇒ Object
Returns the value of attribute entry_id.
270 271 272 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 270 def entry_id @entry_id end |
#file_encryption_key ⇒ Object
Returns the value of attribute file_encryption_key.
272 273 274 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 272 def file_encryption_key @file_encryption_key end |
#file_location ⇒ Object
Returns the value of attribute file_location.
271 272 273 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 271 def file_location @file_location end |
#multi_lanaguage_caption_asset_id ⇒ Object
Returns the value of attribute multi_lanaguage_caption_asset_id.
269 270 271 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 269 def multi_lanaguage_caption_asset_id @multi_lanaguage_caption_asset_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 275 def from_xml(xml_element) super if xml_element.elements['multiLanaguageCaptionAssetId'] != nil self.multi_lanaguage_caption_asset_id = xml_element.elements['multiLanaguageCaptionAssetId'].text end if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['fileLocation'] != nil self.file_location = xml_element.elements['fileLocation'].text end if xml_element.elements['fileEncryptionKey'] != nil self.file_encryption_key = xml_element.elements['fileEncryptionKey'].text end end |