Class: Kaltura::KalturaFeedDropFolder
- Inherits:
-
KalturaDropFolder
- Object
- KalturaObjectBase
- KalturaDropFolder
- Kaltura::KalturaFeedDropFolder
- Defined in:
- lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb
Instance Attribute Summary collapse
-
#feed_item_info ⇒ Object
Returns the value of attribute feed_item_info.
-
#item_handling_limit ⇒ Object
Returns the value of attribute item_handling_limit.
Attributes inherited from KalturaDropFolder
#auto_file_delete_days, #categories_metadata_field_name, #conversion_profile_id, #created_at, #dc, #description, #enforce_entitlement, #error_code, #error_description, #file_delete_policy, #file_delete_regex, #file_handler_config, #file_handler_type, #file_name_patterns, #file_size_check_interval, #id, #ignore_file_name_patterns, #incremental, #last_accessed_at, #last_file_timestamp, #metadata_profile_id, #name, #partner_id, #path, #should_validate_ks, #status, #tags, #type, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#feed_item_info ⇒ Object
Returns the value of attribute feed_item_info.
80 81 82 |
# File 'lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb', line 80 def feed_item_info @feed_item_info end |
#item_handling_limit ⇒ Object
Returns the value of attribute item_handling_limit.
79 80 81 |
# File 'lib/kaltura_plugins/kaltura_feed_drop_folder_client_plugin.rb', line 79 def item_handling_limit @item_handling_limit end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
86 87 88 89 90 91 92 93 94 |
# 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 |