Class: Kaltura::KalturaConvartableJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#actual_src_file_sync_local_pathObject

The translated path as used by the scheduler



11721
11722
11723
# File 'lib/kaltura_types.rb', line 11721

def actual_src_file_sync_local_path
  @actual_src_file_sync_local_path
end

#current_operation_indexObject

Returns the value of attribute current_operation_index.



11729
11730
11731
# File 'lib/kaltura_types.rb', line 11729

def current_operation_index
  @current_operation_index
end

#current_operation_setObject

Returns the value of attribute current_operation_set.



11728
11729
11730
# File 'lib/kaltura_types.rb', line 11728

def current_operation_set
  @current_operation_set
end

#engine_versionObject

Returns the value of attribute engine_version.



11724
11725
11726
# File 'lib/kaltura_types.rb', line 11724

def engine_version
  @engine_version
end

#flavor_params_outputObject

Returns the value of attribute flavor_params_output.



11726
11727
11728
# File 'lib/kaltura_types.rb', line 11726

def flavor_params_output
  @flavor_params_output
end

#flavor_params_output_idObject

Returns the value of attribute flavor_params_output_id.



11725
11726
11727
# File 'lib/kaltura_types.rb', line 11725

def flavor_params_output_id
  @flavor_params_output_id
end

#media_info_idObject

Returns the value of attribute media_info_id.



11727
11728
11729
# File 'lib/kaltura_types.rb', line 11727

def media_info_id
  @media_info_id
end

#plugin_dataObject

Returns the value of attribute plugin_data.



11730
11731
11732
# File 'lib/kaltura_types.rb', line 11730

def plugin_data
  @plugin_data
end

#src_file_sync_local_pathObject

Returns the value of attribute src_file_sync_local_path.



11719
11720
11721
# File 'lib/kaltura_types.rb', line 11719

def src_file_sync_local_path
  @src_file_sync_local_path
end

#src_file_sync_remote_urlObject

Returns the value of attribute src_file_sync_remote_url.



11722
11723
11724
# File 'lib/kaltura_types.rb', line 11722

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#src_file_syncsObject

Returns the value of attribute src_file_syncs.



11723
11724
11725
# File 'lib/kaltura_types.rb', line 11723

def src_file_syncs
  @src_file_syncs
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11748
11749
11750
11751
11752
11753
11754
11755
11756
11757
11758
11759
11760
11761
11762
11763
11764
11765
11766
11767
11768
11769
11770
11771
11772
11773
11774
11775
11776
11777
11778
11779
11780
11781
11782
11783
# File 'lib/kaltura_types.rb', line 11748

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