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



11867
11868
11869
# File 'lib/kaltura_types.rb', line 11867

def actual_src_file_sync_local_path
  @actual_src_file_sync_local_path
end

#file_containerObject

Returns the value of attribute file_container.



11865
11866
11867
# File 'lib/kaltura_types.rb', line 11865

def file_container
  @file_container
end

#src_asset_encryption_keyObject

Returns the value of attribute src_asset_encryption_key.



11872
11873
11874
# File 'lib/kaltura_types.rb', line 11872

def src_asset_encryption_key
  @src_asset_encryption_key
end

#src_asset_idObject

Returns the value of attribute src_asset_id.



11871
11872
11873
# File 'lib/kaltura_types.rb', line 11871

def src_asset_id
  @src_asset_id
end

#src_asset_typeObject

Returns the value of attribute src_asset_type.



11873
11874
11875
# File 'lib/kaltura_types.rb', line 11873

def src_asset_type
  @src_asset_type
end

#src_file_sync_remote_urlObject

Returns the value of attribute src_file_sync_remote_url.



11868
11869
11870
# File 'lib/kaltura_types.rb', line 11868

def src_file_sync_remote_url
  @src_file_sync_remote_url
end

#thumb_asset_idObject

Returns the value of attribute thumb_asset_id.



11870
11871
11872
# File 'lib/kaltura_types.rb', line 11870

def thumb_asset_id
  @thumb_asset_id
end

#thumb_params_output_idObject

Returns the value of attribute thumb_params_output_id.



11869
11870
11871
# File 'lib/kaltura_types.rb', line 11869

def thumb_params_output_id
  @thumb_params_output_id
end

#thumb_pathObject

Returns the value of attribute thumb_path.



11874
11875
11876
# File 'lib/kaltura_types.rb', line 11874

def thumb_path
  @thumb_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11880
11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
11907
11908
11909
# File 'lib/kaltura_types.rb', line 11880

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