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
12060 12061 12062 |
# File 'lib/kaltura_types.rb', line 12060 def actual_src_file_sync_local_path @actual_src_file_sync_local_path end |
#file_container ⇒ Object
Returns the value of attribute file_container.
12058 12059 12060 |
# File 'lib/kaltura_types.rb', line 12058 def file_container @file_container end |
#src_asset_encryption_key ⇒ Object
Returns the value of attribute src_asset_encryption_key.
12065 12066 12067 |
# File 'lib/kaltura_types.rb', line 12065 def src_asset_encryption_key @src_asset_encryption_key end |
#src_asset_id ⇒ Object
Returns the value of attribute src_asset_id.
12064 12065 12066 |
# File 'lib/kaltura_types.rb', line 12064 def src_asset_id @src_asset_id end |
#src_asset_type ⇒ Object
Returns the value of attribute src_asset_type.
12066 12067 12068 |
# File 'lib/kaltura_types.rb', line 12066 def src_asset_type @src_asset_type end |
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
12061 12062 12063 |
# File 'lib/kaltura_types.rb', line 12061 def src_file_sync_remote_url @src_file_sync_remote_url end |
#thumb_asset_id ⇒ Object
Returns the value of attribute thumb_asset_id.
12063 12064 12065 |
# File 'lib/kaltura_types.rb', line 12063 def thumb_asset_id @thumb_asset_id end |
#thumb_params_output_id ⇒ Object
Returns the value of attribute thumb_params_output_id.
12062 12063 12064 |
# File 'lib/kaltura_types.rb', line 12062 def thumb_params_output_id @thumb_params_output_id end |
#thumb_path ⇒ Object
Returns the value of attribute thumb_path.
12067 12068 12069 |
# File 'lib/kaltura_types.rb', line 12067 def thumb_path @thumb_path end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 |
# File 'lib/kaltura_types.rb', line 12073 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 |