Class: Kaltura::KalturaConvertCollectionJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaConvartableJobData

#actual_src_file_sync_local_path, #current_operation_index, #current_operation_set, #engine_version, #flavor_params_output, #flavor_params_output_id, #media_info_id, #plugin_data, #src_file_sync_local_path, #src_file_sync_remote_url, #src_file_syncs

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#command_lines_strObject

Returns the value of attribute command_lines_str.



16286
16287
16288
# File 'lib/kaltura_types.rb', line 16286

def command_lines_str
  @command_lines_str
end

#dest_dir_local_pathObject

Returns the value of attribute dest_dir_local_path.



16281
16282
16283
# File 'lib/kaltura_types.rb', line 16281

def dest_dir_local_path
  @dest_dir_local_path
end

#dest_dir_remote_urlObject

Returns the value of attribute dest_dir_remote_url.



16282
16283
16284
# File 'lib/kaltura_types.rb', line 16282

def dest_dir_remote_url
  @dest_dir_remote_url
end

#dest_file_nameObject

Returns the value of attribute dest_file_name.



16283
16284
16285
# File 'lib/kaltura_types.rb', line 16283

def dest_file_name
  @dest_file_name
end

#flavorsObject

Returns the value of attribute flavors.



16287
16288
16289
# File 'lib/kaltura_types.rb', line 16287

def flavors
  @flavors
end

#input_xml_local_pathObject

Returns the value of attribute input_xml_local_path.



16284
16285
16286
# File 'lib/kaltura_types.rb', line 16284

def input_xml_local_path
  @input_xml_local_path
end

#input_xml_remote_urlObject

Returns the value of attribute input_xml_remote_url.



16285
16286
16287
# File 'lib/kaltura_types.rb', line 16285

def input_xml_remote_url
  @input_xml_remote_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16290
16291
16292
16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
16303
16304
16305
16306
16307
16308
16309
16310
16311
16312
16313
# File 'lib/kaltura_types.rb', line 16290

def from_xml(xml_element)
	super
	if xml_element.elements['destDirLocalPath'] != nil
		self.dest_dir_local_path = xml_element.elements['destDirLocalPath'].text
	end
	if xml_element.elements['destDirRemoteUrl'] != nil
		self.dest_dir_remote_url = xml_element.elements['destDirRemoteUrl'].text
	end
	if xml_element.elements['destFileName'] != nil
		self.dest_file_name = xml_element.elements['destFileName'].text
	end
	if xml_element.elements['inputXmlLocalPath'] != nil
		self.input_xml_local_path = xml_element.elements['inputXmlLocalPath'].text
	end
	if xml_element.elements['inputXmlRemoteUrl'] != nil
		self.input_xml_remote_url = xml_element.elements['inputXmlRemoteUrl'].text
	end
	if xml_element.elements['commandLinesStr'] != nil
		self.command_lines_str = xml_element.elements['commandLinesStr'].text
	end
	if xml_element.elements['flavors'] != nil
		self.flavors = KalturaClientBase.object_from_xml(xml_element.elements['flavors'], 'KalturaConvertCollectionFlavorData')
	end
end