Class: Kaltura::KalturaImportJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaImportJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#dest_file_local_path ⇒ Object
Returns the value of attribute dest_file_local_path.
-
#file_size ⇒ Object
Returns the value of attribute file_size.
-
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
-
#src_file_url ⇒ Object
Returns the value of attribute src_file_url.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#dest_file_local_path ⇒ Object
Returns the value of attribute dest_file_local_path.
9029 9030 9031 |
# File 'lib/kaltura_types.rb', line 9029 def dest_file_local_path @dest_file_local_path end |
#file_size ⇒ Object
Returns the value of attribute file_size.
9031 9032 9033 |
# File 'lib/kaltura_types.rb', line 9031 def file_size @file_size end |
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
9030 9031 9032 |
# File 'lib/kaltura_types.rb', line 9030 def flavor_asset_id @flavor_asset_id end |
#src_file_url ⇒ Object
Returns the value of attribute src_file_url.
9028 9029 9030 |
# File 'lib/kaltura_types.rb', line 9028 def src_file_url @src_file_url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9037 9038 9039 9040 9041 9042 9043 |
# File 'lib/kaltura_types.rb', line 9037 def from_xml(xml_element) super self.src_file_url = xml_element.elements['srcFileUrl'].text self.dest_file_local_path = xml_element.elements['destFileLocalPath'].text self.flavor_asset_id = xml_element.elements['flavorAssetId'].text self.file_size = xml_element.elements['fileSize'].text end |