Class: Kaltura::KalturaCaptureThumbJobData

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



11311
11312
11313
# File 'lib/kaltura_types.rb', line 11311

def actual_src_file_sync_local_path
  @actual_src_file_sync_local_path
end

#file_containerObject

Returns the value of attribute file_container.



11309
11310
11311
# File 'lib/kaltura_types.rb', line 11309

def file_container
  @file_container
end

#src_asset_encryption_keyObject

Returns the value of attribute src_asset_encryption_key.



11316
11317
11318
# File 'lib/kaltura_types.rb', line 11316

def src_asset_encryption_key
  @src_asset_encryption_key
end

#src_asset_idObject

Returns the value of attribute src_asset_id.



11315
11316
11317
# File 'lib/kaltura_types.rb', line 11315

def src_asset_id
  @src_asset_id
end

#src_asset_typeObject

Returns the value of attribute src_asset_type.



11317
11318
11319
# File 'lib/kaltura_types.rb', line 11317

def src_asset_type
  @src_asset_type
end

#src_file_sync_remote_urlObject

Returns the value of attribute src_file_sync_remote_url.



11312
11313
11314
# File 'lib/kaltura_types.rb', line 11312

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#thumb_asset_idObject

Returns the value of attribute thumb_asset_id.



11314
11315
11316
# File 'lib/kaltura_types.rb', line 11314

def thumb_asset_id
  @thumb_asset_id
end

#thumb_params_output_idObject

Returns the value of attribute thumb_params_output_id.



11313
11314
11315
# File 'lib/kaltura_types.rb', line 11313

def thumb_params_output_id
  @thumb_params_output_id
end

#thumb_pathObject

Returns the value of attribute thumb_path.



11318
11319
11320
# File 'lib/kaltura_types.rb', line 11318

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11324
11325
11326
11327
11328
11329
11330
11331
11332
11333
11334
11335
11336
11337
11338
11339
11340
11341
11342
11343
11344
11345
11346
11347
11348
11349
11350
11351
11352
11353
# File 'lib/kaltura_types.rb', line 11324

def from_xml(xml_element)
	super
	if xml_element.elements['fileContainer'] != nil
		self.file_container = KalturaClientBase.object_from_xml(xml_element.elements['fileContainer'], 'KalturaFileContainer')
	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['thumbParamsOutputId'] != nil
		self.thumb_params_output_id = xml_element.elements['thumbParamsOutputId'].text
	end
	if xml_element.elements['thumbAssetId'] != nil
		self.thumb_asset_id = xml_element.elements['thumbAssetId'].text
	end
	if xml_element.elements['srcAssetId'] != nil
		self.src_asset_id = xml_element.elements['srcAssetId'].text
	end
	if xml_element.elements['srcAssetEncryptionKey'] != nil
		self.src_asset_encryption_key = xml_element.elements['srcAssetEncryptionKey'].text
	end
	if xml_element.elements['srcAssetType'] != nil
		self.src_asset_type = xml_element.elements['srcAssetType'].text
	end
	if xml_element.elements['thumbPath'] != nil
		self.thumb_path = xml_element.elements['thumbPath'].text
	end
end