Class: Kaltura::KalturaConvertJobData

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

#custom_dataObject

Returns the value of attribute custom_data.



16262
16263
16264
# File 'lib/kaltura_types.rb', line 16262

def custom_data
  @custom_data
end

#dest_file_sync_local_pathObject

Returns the value of attribute dest_file_sync_local_path.



16256
16257
16258
# File 'lib/kaltura_types.rb', line 16256

def dest_file_sync_local_path
  @dest_file_sync_local_path
end

#dest_file_sync_remote_urlObject

Returns the value of attribute dest_file_sync_remote_url.



16257
16258
16259
# File 'lib/kaltura_types.rb', line 16257

def dest_file_sync_remote_url
  @dest_file_sync_remote_url
end

#engine_messageObject

Returns the value of attribute engine_message.



16264
16265
16266
# File 'lib/kaltura_types.rb', line 16264

def engine_message
  @engine_message
end

#extra_dest_file_syncsObject

Returns the value of attribute extra_dest_file_syncs.



16263
16264
16265
# File 'lib/kaltura_types.rb', line 16263

def extra_dest_file_syncs
  @extra_dest_file_syncs
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



16260
16261
16262
# File 'lib/kaltura_types.rb', line 16260

def flavor_asset_id
  @flavor_asset_id
end

#log_file_sync_local_pathObject

Returns the value of attribute log_file_sync_local_path.



16258
16259
16260
# File 'lib/kaltura_types.rb', line 16258

def log_file_sync_local_path
  @log_file_sync_local_path
end

#log_file_sync_remote_urlObject

Returns the value of attribute log_file_sync_remote_url.



16259
16260
16261
# File 'lib/kaltura_types.rb', line 16259

def log_file_sync_remote_url
  @log_file_sync_remote_url
end

#remote_media_idObject

Returns the value of attribute remote_media_id.



16261
16262
16263
# File 'lib/kaltura_types.rb', line 16261

def remote_media_id
  @remote_media_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16267
16268
16269
16270
16271
16272
16273
16274
16275
16276
16277
16278
16279
16280
16281
16282
16283
16284
16285
16286
16287
16288
16289
16290
16291
16292
16293
16294
16295
16296
# File 'lib/kaltura_types.rb', line 16267

def from_xml(xml_element)
	super
	if xml_element.elements['destFileSyncLocalPath'] != nil
		self.dest_file_sync_local_path = xml_element.elements['destFileSyncLocalPath'].text
	end
	if xml_element.elements['destFileSyncRemoteUrl'] != nil
		self.dest_file_sync_remote_url = xml_element.elements['destFileSyncRemoteUrl'].text
	end
	if xml_element.elements['logFileSyncLocalPath'] != nil
		self.log_file_sync_local_path = xml_element.elements['logFileSyncLocalPath'].text
	end
	if xml_element.elements['logFileSyncRemoteUrl'] != nil
		self.log_file_sync_remote_url = xml_element.elements['logFileSyncRemoteUrl'].text
	end
	if xml_element.elements['flavorAssetId'] != nil
		self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
	end
	if xml_element.elements['remoteMediaId'] != nil
		self.remote_media_id = xml_element.elements['remoteMediaId'].text
	end
	if xml_element.elements['customData'] != nil
		self.custom_data = xml_element.elements['customData'].text
	end
	if xml_element.elements['extraDestFileSyncs'] != nil
		self.extra_dest_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['extraDestFileSyncs'], 'KalturaDestFileSyncDescriptor')
	end
	if xml_element.elements['engineMessage'] != nil
		self.engine_message = xml_element.elements['engineMessage'].text
	end
end