Class: Kaltura::KalturaConvertCollectionJobData

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

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#command_lines_strObject

Returns the value of attribute command_lines_str.



11243
11244
11245
# File 'lib/kaltura_types.rb', line 11243

def command_lines_str
  @command_lines_str
end

#dest_dir_local_pathObject

Returns the value of attribute dest_dir_local_path.



11238
11239
11240
# File 'lib/kaltura_types.rb', line 11238

def dest_dir_local_path
  @dest_dir_local_path
end

#dest_dir_remote_urlObject

Returns the value of attribute dest_dir_remote_url.



11239
11240
11241
# File 'lib/kaltura_types.rb', line 11239

def dest_dir_remote_url
  @dest_dir_remote_url
end

#dest_file_nameObject

Returns the value of attribute dest_file_name.



11240
11241
11242
# File 'lib/kaltura_types.rb', line 11240

def dest_file_name
  @dest_file_name
end

#flavorsObject

Returns the value of attribute flavors.



11244
11245
11246
# File 'lib/kaltura_types.rb', line 11244

def flavors
  @flavors
end

#input_xml_local_pathObject

Returns the value of attribute input_xml_local_path.



11241
11242
11243
# File 'lib/kaltura_types.rb', line 11241

def input_xml_local_path
  @input_xml_local_path
end

#input_xml_remote_urlObject

Returns the value of attribute input_xml_remote_url.



11242
11243
11244
# File 'lib/kaltura_types.rb', line 11242

def input_xml_remote_url
  @input_xml_remote_url
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11247
11248
11249
11250
11251
11252
11253
11254
11255
11256
# File 'lib/kaltura_types.rb', line 11247

def from_xml(xml_element)
  super
  self.dest_dir_local_path = xml_element.elements['destDirLocalPath'].text
  self.dest_dir_remote_url = xml_element.elements['destDirRemoteUrl'].text
  self.dest_file_name = xml_element.elements['destFileName'].text
  self.input_xml_local_path = xml_element.elements['inputXmlLocalPath'].text
  self.input_xml_remote_url = xml_element.elements['inputXmlRemoteUrl'].text
  self.command_lines_str = xml_element.elements['commandLinesStr'].text
  self.flavors = KalturaClientBase.object_from_xml(xml_element.elements['flavors'], 'KalturaConvertCollectionFlavorData')
end