Class: Kaltura::KalturaCaptureThumbJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaCaptureThumbJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#actual_src_file_sync_local_path ⇒ Object
The translated path as used by the scheduler.
-
#file_container ⇒ Object
Returns the value of attribute file_container.
-
#src_asset_encryption_key ⇒ Object
Returns the value of attribute src_asset_encryption_key.
-
#src_asset_id ⇒ Object
Returns the value of attribute src_asset_id.
-
#src_asset_type ⇒ Object
Returns the value of attribute src_asset_type.
-
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
-
#thumb_asset_id ⇒ Object
Returns the value of attribute thumb_asset_id.
-
#thumb_params_output_id ⇒ Object
Returns the value of attribute thumb_params_output_id.
-
#thumb_path ⇒ Object
Returns the value of attribute thumb_path.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#actual_src_file_sync_local_path ⇒ Object
The translated path as used by the scheduler
11980 11981 11982 |
# File 'lib/kaltura_types.rb', line 11980 def actual_src_file_sync_local_path @actual_src_file_sync_local_path end |
#file_container ⇒ Object
Returns the value of attribute file_container.
11978 11979 11980 |
# File 'lib/kaltura_types.rb', line 11978 def file_container @file_container end |
#src_asset_encryption_key ⇒ Object
Returns the value of attribute src_asset_encryption_key.
11985 11986 11987 |
# File 'lib/kaltura_types.rb', line 11985 def src_asset_encryption_key @src_asset_encryption_key end |
#src_asset_id ⇒ Object
Returns the value of attribute src_asset_id.
11984 11985 11986 |
# File 'lib/kaltura_types.rb', line 11984 def src_asset_id @src_asset_id end |
#src_asset_type ⇒ Object
Returns the value of attribute src_asset_type.
11986 11987 11988 |
# File 'lib/kaltura_types.rb', line 11986 def src_asset_type @src_asset_type end |
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
11981 11982 11983 |
# File 'lib/kaltura_types.rb', line 11981 def src_file_sync_remote_url @src_file_sync_remote_url end |
#thumb_asset_id ⇒ Object
Returns the value of attribute thumb_asset_id.
11983 11984 11985 |
# File 'lib/kaltura_types.rb', line 11983 def thumb_asset_id @thumb_asset_id end |
#thumb_params_output_id ⇒ Object
Returns the value of attribute thumb_params_output_id.
11982 11983 11984 |
# File 'lib/kaltura_types.rb', line 11982 def thumb_params_output_id @thumb_params_output_id end |
#thumb_path ⇒ Object
Returns the value of attribute thumb_path.
11987 11988 11989 |
# File 'lib/kaltura_types.rb', line 11987 def thumb_path @thumb_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 |
# File 'lib/kaltura_types.rb', line 11993 def from_xml(xml_element) super if xml_element.elements['fileContainer'] != nil self.file_container = KalturaClientBase.object_from_xml(xml_element.elements['fileContainer'], 'KalturaFileContainer') end if xml_element.elements['actualSrcFileSyncLocalPath'] != nil self.actual_src_file_sync_local_path = xml_element.elements['actualSrcFileSyncLocalPath'].text end if xml_element.elements['srcFileSyncRemoteUrl'] != nil self.src_file_sync_remote_url = xml_element.elements['srcFileSyncRemoteUrl'].text end if xml_element.elements['thumbParamsOutputId'] != nil self.thumb_params_output_id = xml_element.elements['thumbParamsOutputId'].text end if xml_element.elements['thumbAssetId'] != nil self.thumb_asset_id = xml_element.elements['thumbAssetId'].text end if xml_element.elements['srcAssetId'] != nil self.src_asset_id = xml_element.elements['srcAssetId'].text end if xml_element.elements['srcAssetEncryptionKey'] != nil self.src_asset_encryption_key = xml_element.elements['srcAssetEncryptionKey'].text end if xml_element.elements['srcAssetType'] != nil self.src_asset_type = xml_element.elements['srcAssetType'].text end if xml_element.elements['thumbPath'] != nil self.thumb_path = xml_element.elements['thumbPath'].text end end |