class Kaltura::KalturaConvertCollectionJobData

Attributes

command_lines_str[RW]
dest_dir_local_path[RW]
dest_dir_remote_url[RW]
dest_file_name[RW]
flavors[RW]
input_xml_local_path[RW]
input_xml_remote_url[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 16913
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