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



7994
7995
7996
# File 'lib/kaltura_types.rb', line 7994

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.



8002
8003
8004
# File 'lib/kaltura_types.rb', line 8002

def current_operation_index
  @current_operation_index
end

#current_operation_setObject

Returns the value of attribute current_operation_set.



8001
8002
8003
# File 'lib/kaltura_types.rb', line 8001

def current_operation_set
  @current_operation_set
end

#engine_versionObject

Returns the value of attribute engine_version.



7997
7998
7999
# File 'lib/kaltura_types.rb', line 7997

def engine_version
  @engine_version
end

#flavor_params_outputObject

Returns the value of attribute flavor_params_output.



7999
8000
8001
# File 'lib/kaltura_types.rb', line 7999

def flavor_params_output
  @flavor_params_output
end

#flavor_params_output_idObject

Returns the value of attribute flavor_params_output_id.



7998
7999
8000
# File 'lib/kaltura_types.rb', line 7998

def flavor_params_output_id
  @flavor_params_output_id
end

#media_info_idObject

Returns the value of attribute media_info_id.



8000
8001
8002
# File 'lib/kaltura_types.rb', line 8000

def media_info_id
  @media_info_id
end

#plugin_dataObject

Returns the value of attribute plugin_data.



8003
8004
8005
# File 'lib/kaltura_types.rb', line 8003

def plugin_data
  @plugin_data
end

#src_file_sync_local_pathObject

Returns the value of attribute src_file_sync_local_path.



7991
7992
7993
# File 'lib/kaltura_types.rb', line 7991

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.



7995
7996
7997
# File 'lib/kaltura_types.rb', line 7995

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#src_file_syncsObject

Returns the value of attribute src_file_syncs.



7996
7997
7998
# File 'lib/kaltura_types.rb', line 7996

def src_file_syncs
  @src_file_syncs
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8021
8022
8023
8024
8025
8026
8027
8028
8029
8030
8031
8032
8033
8034
# File 'lib/kaltura_types.rb', line 8021

def from_xml(xml_element)
	super
	self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text
	self.actual_src_file_sync_local_path = xml_element.elements['actualSrcFileSyncLocalPath'].text
	self.src_file_sync_remote_url = xml_element.elements['srcFileSyncRemoteUrl'].text
	self.src_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['srcFileSyncs'], 'KalturaSourceFileSyncDescriptor')
	self.engine_version = xml_element.elements['engineVersion'].text
	self.flavor_params_output_id = xml_element.elements['flavorParamsOutputId'].text
	self.flavor_params_output = KalturaClientBase.object_from_xml(xml_element.elements['flavorParamsOutput'], 'KalturaFlavorParamsOutput')
	self.media_info_id = xml_element.elements['mediaInfoId'].text
	self.current_operation_set = xml_element.elements['currentOperationSet'].text
	self.current_operation_index = xml_element.elements['currentOperationIndex'].text
	self.plugin_data = KalturaClientBase.object_from_xml(xml_element.elements['pluginData'], 'KalturaKeyValue')
end