Class: Kaltura::KalturaImportJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaSshImportJobData

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

#dest_file_local_pathObject

Returns the value of attribute dest_file_local_path.



13967
13968
13969
# File 'lib/kaltura_types.rb', line 13967

def dest_file_local_path
  @dest_file_local_path
end

#dest_file_shared_pathObject

Returns the value of attribute dest_file_shared_path.



13970
13971
13972
# File 'lib/kaltura_types.rb', line 13970

def dest_file_shared_path
  @dest_file_shared_path
end

#file_sizeObject

Returns the value of attribute file_size.



13969
13970
13971
# File 'lib/kaltura_types.rb', line 13969

def file_size
  @file_size
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



13968
13969
13970
# File 'lib/kaltura_types.rb', line 13968

def flavor_asset_id
  @flavor_asset_id
end

#src_file_urlObject

Returns the value of attribute src_file_url.



13966
13967
13968
# File 'lib/kaltura_types.rb', line 13966

def src_file_url
  @src_file_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
# File 'lib/kaltura_types.rb', line 13976

def from_xml(xml_element)
	super
	if xml_element.elements['srcFileUrl'] != nil
		self.src_file_url = xml_element.elements['srcFileUrl'].text
	end
	if xml_element.elements['destFileLocalPath'] != nil
		self.dest_file_local_path = xml_element.elements['destFileLocalPath'].text
	end
	if xml_element.elements['flavorAssetId'] != nil
		self.flavor_asset_id = xml_element.elements['flavorAssetId'].text
	end
	if xml_element.elements['fileSize'] != nil
		self.file_size = xml_element.elements['fileSize'].text
	end
	if xml_element.elements['destFileSharedPath'] != nil
		self.dest_file_shared_path = xml_element.elements['destFileSharedPath'].text
	end
end