class Kaltura::KalturaFeedDropFolderFile

Attributes

feed_xml_path[RW]

Path of the original Feed content XML

hash[RW]

MD5 or Sha1 encrypted string

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaDropFolderFile#from_xml
# File lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb, line 105
def from_xml(xml_element)
        super
        if xml_element.elements['hash'] != nil
                self.hash = xml_element.elements['hash'].text
        end
        if xml_element.elements['feedXmlPath'] != nil
                self.feed_xml_path = xml_element.elements['feedXmlPath'].text
        end
end