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.



13278
13279
13280
# File 'lib/kaltura_types.rb', line 13278

def dest_file_local_path
  @dest_file_local_path
end

#file_sizeObject

Returns the value of attribute file_size.



13280
13281
13282
# File 'lib/kaltura_types.rb', line 13280

def file_size
  @file_size
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



13279
13280
13281
# File 'lib/kaltura_types.rb', line 13279

def flavor_asset_id
  @flavor_asset_id
end

#src_file_urlObject

Returns the value of attribute src_file_url.



13277
13278
13279
# File 'lib/kaltura_types.rb', line 13277

def src_file_url
  @src_file_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13286
13287
13288
13289
13290
13291
13292
13293
13294
13295
13296
13297
13298
13299
13300
# File 'lib/kaltura_types.rb', line 13286

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
end