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.



11267
11268
11269
# File 'lib/kaltura_types.rb', line 11267

def custom_data
  @custom_data
end

#dest_file_sync_local_pathObject

Returns the value of attribute dest_file_sync_local_path.



11261
11262
11263
# File 'lib/kaltura_types.rb', line 11261

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.



11262
11263
11264
# File 'lib/kaltura_types.rb', line 11262

def dest_file_sync_remote_url
  @dest_file_sync_remote_url
end

#engine_messageObject

Returns the value of attribute engine_message.



11269
11270
11271
# File 'lib/kaltura_types.rb', line 11269

def engine_message
  @engine_message
end

#extra_dest_file_syncsObject

Returns the value of attribute extra_dest_file_syncs.



11268
11269
11270
# File 'lib/kaltura_types.rb', line 11268

def extra_dest_file_syncs
  @extra_dest_file_syncs
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



11265
11266
11267
# File 'lib/kaltura_types.rb', line 11265

def flavor_asset_id
  @flavor_asset_id
end

#log_file_sync_local_pathObject

Returns the value of attribute log_file_sync_local_path.



11263
11264
11265
# File 'lib/kaltura_types.rb', line 11263

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.



11264
11265
11266
# File 'lib/kaltura_types.rb', line 11264

def log_file_sync_remote_url
  @log_file_sync_remote_url
end

#remote_media_idObject

Returns the value of attribute remote_media_id.



11266
11267
11268
# File 'lib/kaltura_types.rb', line 11266

def remote_media_id
  @remote_media_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11272
11273
11274
11275
11276
11277
11278
11279
11280
11281
11282
11283
# File 'lib/kaltura_types.rb', line 11272

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