Class: Kaltura::KalturaFeedDropFolderFile

Inherits:
KalturaDropFolderFile show all
Defined in:
lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaDropFolderFile

#batch_job_id, #created_at, #deleted_drop_folder_file_id, #drop_folder_id, #entry_id, #error_code, #error_description, #file_name, #file_size, #file_size_last_set_at, #id, #import_ended_at, #import_started_at, #last_modification_time, #lead_drop_folder_file_id, #parsed_flavor, #parsed_slug, #parsed_user_id, #partner_id, #status, #type, #updated_at, #upload_end_detected_at, #upload_start_detected_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#feed_xml_pathObject

Path of the original Feed content XML



102
103
104
# File 'lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb', line 102

def feed_xml_path
  @feed_xml_path
end

#hashObject

MD5 or Sha1 encrypted string



100
101
102
# File 'lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb', line 100

def hash
  @hash
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



105
106
107
108
109
110
111
112
113
# 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