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.
-
#dest_file_shared_path ⇒ Object
Returns the value of attribute dest_file_shared_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.
13847 13848 13849 |
# File 'lib/kaltura_types.rb', line 13847 def dest_file_local_path @dest_file_local_path end |
#dest_file_shared_path ⇒ Object
Returns the value of attribute dest_file_shared_path.
13850 13851 13852 |
# File 'lib/kaltura_types.rb', line 13850 def dest_file_shared_path @dest_file_shared_path end |
#file_size ⇒ Object
Returns the value of attribute file_size.
13849 13850 13851 |
# File 'lib/kaltura_types.rb', line 13849 def file_size @file_size end |
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
13848 13849 13850 |
# File 'lib/kaltura_types.rb', line 13848 def flavor_asset_id @flavor_asset_id end |
#src_file_url ⇒ Object
Returns the value of attribute src_file_url.
13846 13847 13848 |
# File 'lib/kaltura_types.rb', line 13846 def src_file_url @src_file_url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 |
# File 'lib/kaltura_types.rb', line 13856 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 |