Class: Kaltura::KalturaConvartableJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaConvartableJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaConvertCollectionJobData, KalturaConvertJobData, KalturaExtractMediaJobData, KalturaPostConvertJobData
Instance Attribute Summary collapse
-
#actual_src_file_sync_local_path ⇒ Object
The translated path as used by the scheduler.
-
#current_operation_index ⇒ Object
Returns the value of attribute current_operation_index.
-
#current_operation_set ⇒ Object
Returns the value of attribute current_operation_set.
-
#engine_version ⇒ Object
Returns the value of attribute engine_version.
-
#flavor_params_output ⇒ Object
Returns the value of attribute flavor_params_output.
-
#flavor_params_output_id ⇒ Object
Returns the value of attribute flavor_params_output_id.
-
#media_info_id ⇒ Object
Returns the value of attribute media_info_id.
-
#plugin_data ⇒ Object
Returns the value of attribute plugin_data.
-
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
-
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
-
#src_file_syncs ⇒ Object
Returns the value of attribute src_file_syncs.
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
11956 11957 11958 |
# File 'lib/kaltura_types.rb', line 11956 def actual_src_file_sync_local_path @actual_src_file_sync_local_path end |
#current_operation_index ⇒ Object
Returns the value of attribute current_operation_index.
11964 11965 11966 |
# File 'lib/kaltura_types.rb', line 11964 def current_operation_index @current_operation_index end |
#current_operation_set ⇒ Object
Returns the value of attribute current_operation_set.
11963 11964 11965 |
# File 'lib/kaltura_types.rb', line 11963 def current_operation_set @current_operation_set end |
#engine_version ⇒ Object
Returns the value of attribute engine_version.
11959 11960 11961 |
# File 'lib/kaltura_types.rb', line 11959 def engine_version @engine_version end |
#flavor_params_output ⇒ Object
Returns the value of attribute flavor_params_output.
11961 11962 11963 |
# File 'lib/kaltura_types.rb', line 11961 def flavor_params_output @flavor_params_output end |
#flavor_params_output_id ⇒ Object
Returns the value of attribute flavor_params_output_id.
11960 11961 11962 |
# File 'lib/kaltura_types.rb', line 11960 def flavor_params_output_id @flavor_params_output_id end |
#media_info_id ⇒ Object
Returns the value of attribute media_info_id.
11962 11963 11964 |
# File 'lib/kaltura_types.rb', line 11962 def media_info_id @media_info_id end |
#plugin_data ⇒ Object
Returns the value of attribute plugin_data.
11965 11966 11967 |
# File 'lib/kaltura_types.rb', line 11965 def plugin_data @plugin_data end |
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
11954 11955 11956 |
# File 'lib/kaltura_types.rb', line 11954 def src_file_sync_local_path @src_file_sync_local_path end |
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
11957 11958 11959 |
# File 'lib/kaltura_types.rb', line 11957 def src_file_sync_remote_url @src_file_sync_remote_url end |
#src_file_syncs ⇒ Object
Returns the value of attribute src_file_syncs.
11958 11959 11960 |
# File 'lib/kaltura_types.rb', line 11958 def src_file_syncs @src_file_syncs end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 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 |
# File 'lib/kaltura_types.rb', line 11983 def from_xml(xml_element) super if xml_element.elements['srcFileSyncLocalPath'] != nil self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text 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['srcFileSyncs'] != nil self.src_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['srcFileSyncs'], 'KalturaSourceFileSyncDescriptor') end if xml_element.elements['engineVersion'] != nil self.engine_version = xml_element.elements['engineVersion'].text end if xml_element.elements['flavorParamsOutputId'] != nil self.flavor_params_output_id = xml_element.elements['flavorParamsOutputId'].text end if xml_element.elements['flavorParamsOutput'] != nil self.flavor_params_output = KalturaClientBase.object_from_xml(xml_element.elements['flavorParamsOutput'], 'KalturaFlavorParamsOutput') end if xml_element.elements['mediaInfoId'] != nil self.media_info_id = xml_element.elements['mediaInfoId'].text end if xml_element.elements['currentOperationSet'] != nil self.current_operation_set = xml_element.elements['currentOperationSet'].text end if xml_element.elements['currentOperationIndex'] != nil self.current_operation_index = xml_element.elements['currentOperationIndex'].text end if xml_element.elements['pluginData'] != nil self.plugin_data = KalturaClientBase.object_from_xml(xml_element.elements['pluginData'], 'KalturaKeyValue') end end |