Class: Kaltura::KalturaConvertCollectionJobData
- Inherits:
-
KalturaConvartableJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaConvartableJobData
- Kaltura::KalturaConvertCollectionJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#command_lines_str ⇒ Object
Returns the value of attribute command_lines_str.
-
#dest_dir_local_path ⇒ Object
Returns the value of attribute dest_dir_local_path.
-
#dest_dir_remote_url ⇒ Object
Returns the value of attribute dest_dir_remote_url.
-
#dest_file_name ⇒ Object
Returns the value of attribute dest_file_name.
-
#flavors ⇒ Object
Returns the value of attribute flavors.
-
#input_xml_local_path ⇒ Object
Returns the value of attribute input_xml_local_path.
-
#input_xml_remote_url ⇒ Object
Returns the value of attribute input_xml_remote_url.
Attributes inherited from KalturaConvartableJobData
#actual_src_file_sync_local_path, #current_operation_index, #current_operation_set, #engine_version, #flavor_params_output, #flavor_params_output_id, #media_info_id, #plugin_data, #src_file_sync_local_path, #src_file_sync_remote_url, #src_file_syncs
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#command_lines_str ⇒ Object
Returns the value of attribute command_lines_str.
16973 16974 16975 |
# File 'lib/kaltura_types.rb', line 16973 def command_lines_str @command_lines_str end |
#dest_dir_local_path ⇒ Object
Returns the value of attribute dest_dir_local_path.
16968 16969 16970 |
# File 'lib/kaltura_types.rb', line 16968 def dest_dir_local_path @dest_dir_local_path end |
#dest_dir_remote_url ⇒ Object
Returns the value of attribute dest_dir_remote_url.
16969 16970 16971 |
# File 'lib/kaltura_types.rb', line 16969 def dest_dir_remote_url @dest_dir_remote_url end |
#dest_file_name ⇒ Object
Returns the value of attribute dest_file_name.
16970 16971 16972 |
# File 'lib/kaltura_types.rb', line 16970 def dest_file_name @dest_file_name end |
#flavors ⇒ Object
Returns the value of attribute flavors.
16974 16975 16976 |
# File 'lib/kaltura_types.rb', line 16974 def flavors @flavors end |
#input_xml_local_path ⇒ Object
Returns the value of attribute input_xml_local_path.
16971 16972 16973 |
# File 'lib/kaltura_types.rb', line 16971 def input_xml_local_path @input_xml_local_path end |
#input_xml_remote_url ⇒ Object
Returns the value of attribute input_xml_remote_url.
16972 16973 16974 |
# File 'lib/kaltura_types.rb', line 16972 def input_xml_remote_url @input_xml_remote_url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 |
# File 'lib/kaltura_types.rb', line 16977 def from_xml(xml_element) super if xml_element.elements['destDirLocalPath'] != nil self.dest_dir_local_path = xml_element.elements['destDirLocalPath'].text end if xml_element.elements['destDirRemoteUrl'] != nil self.dest_dir_remote_url = xml_element.elements['destDirRemoteUrl'].text end if xml_element.elements['destFileName'] != nil self.dest_file_name = xml_element.elements['destFileName'].text end if xml_element.elements['inputXmlLocalPath'] != nil self.input_xml_local_path = xml_element.elements['inputXmlLocalPath'].text end if xml_element.elements['inputXmlRemoteUrl'] != nil self.input_xml_remote_url = xml_element.elements['inputXmlRemoteUrl'].text end if xml_element.elements['commandLinesStr'] != nil self.command_lines_str = xml_element.elements['commandLinesStr'].text end if xml_element.elements['flavors'] != nil self.flavors = KalturaClientBase.object_from_xml(xml_element.elements['flavors'], 'KalturaConvertCollectionFlavorData') end end |