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



12008
12009
12010
# File 'lib/kaltura_types.rb', line 12008

def actual_src_file_sync_local_path
  @actual_src_file_sync_local_path
end

#file_containerObject

Returns the value of attribute file_container.



12006
12007
12008
# File 'lib/kaltura_types.rb', line 12006

def file_container
  @file_container
end

#src_asset_encryption_keyObject

Returns the value of attribute src_asset_encryption_key.



12013
12014
12015
# File 'lib/kaltura_types.rb', line 12013

def src_asset_encryption_key
  @src_asset_encryption_key
end

#src_asset_idObject

Returns the value of attribute src_asset_id.



12012
12013
12014
# File 'lib/kaltura_types.rb', line 12012

def src_asset_id
  @src_asset_id
end

#src_asset_typeObject

Returns the value of attribute src_asset_type.



12014
12015
12016
# File 'lib/kaltura_types.rb', line 12014

def src_asset_type
  @src_asset_type
end

#src_file_sync_remote_urlObject

Returns the value of attribute src_file_sync_remote_url.



12009
12010
12011
# File 'lib/kaltura_types.rb', line 12009

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#thumb_asset_idObject

Returns the value of attribute thumb_asset_id.



12011
12012
12013
# File 'lib/kaltura_types.rb', line 12011

def thumb_asset_id
  @thumb_asset_id
end

#thumb_params_output_idObject

Returns the value of attribute thumb_params_output_id.



12010
12011
12012
# File 'lib/kaltura_types.rb', line 12010

def thumb_params_output_id
  @thumb_params_output_id
end

#thumb_pathObject

Returns the value of attribute thumb_path.



12015
12016
12017
# File 'lib/kaltura_types.rb', line 12015

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
# File 'lib/kaltura_types.rb', line 12021

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