# =================================================================================================== # _ __ _ _ # | |/ /__ _| | |_ _ _ _ _ __ _ # | ' . # # @ignore # =================================================================================================== require 'kaltura_client.rb' require File.dirname(__FILE__) + '/kaltura_bulk_upload_xml_client_plugin.rb' require File.dirname(__FILE__) + '/kaltura_drop_folder_client_plugin.rb' module Kaltura class KalturaDropFolderXmlBulkUploadFileHandlerConfig < KalturaDropFolderFileHandlerConfig def from_xml(xml_element) super end end # Represents the Bulk upload job data for drop folder xml bulk upload class KalturaDropFolderXmlBulkUploadJobData < KalturaBulkUploadXmlJobData # the job drop folder id attr_accessor :drop_folder_id def drop_folder_id=(val) @drop_folder_id = val.to_i end def from_xml(xml_element) super if xml_element.elements['dropFolderId'] != nil self.drop_folder_id = xml_element.elements['dropFolderId'].text end end end end