class Kaltura::KalturaFeedDropFolder

Attributes

feed_item_info[RW]
item_handling_limit[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaDropFolder#from_xml
# File lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb, line 86
def from_xml(xml_element)
        super
        if xml_element.elements['itemHandlingLimit'] != nil
                self.item_handling_limit = xml_element.elements['itemHandlingLimit'].text
        end
        if xml_element.elements['feedItemInfo'] != nil
                self.feed_item_info = KalturaClientBase.object_from_xml(xml_element.elements['feedItemInfo'], 'KalturaFeedItemInfo')
        end
end
item_handling_limit=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb, line 82
def item_handling_limit=(val)
        @item_handling_limit = val.to_i
end