Class: Kaltura::KalturaDropFolderContentProcessorJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaDropFolderContentProcessorJobData
- Defined in:
- lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb
Instance Attribute Summary collapse
-
#content_match_policy ⇒ Object
Returns the value of attribute content_match_policy.
-
#conversion_profile_id ⇒ Object
Returns the value of attribute conversion_profile_id.
-
#drop_folder_file_ids ⇒ Object
Returns the value of attribute drop_folder_file_ids.
-
#drop_folder_id ⇒ Object
Returns the value of attribute drop_folder_id.
-
#parsed_slug ⇒ Object
Returns the value of attribute parsed_slug.
-
#parsed_user_id ⇒ Object
Returns the value of attribute parsed_user_id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#content_match_policy ⇒ Object
Returns the value of attribute content_match_policy.
548 549 550 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 548 def content_match_policy @content_match_policy end |
#conversion_profile_id ⇒ Object
Returns the value of attribute conversion_profile_id.
549 550 551 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 549 def conversion_profile_id @conversion_profile_id end |
#drop_folder_file_ids ⇒ Object
Returns the value of attribute drop_folder_file_ids.
546 547 548 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 546 def drop_folder_file_ids @drop_folder_file_ids end |
#drop_folder_id ⇒ Object
Returns the value of attribute drop_folder_id.
545 546 547 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 545 def drop_folder_id @drop_folder_id end |
#parsed_slug ⇒ Object
Returns the value of attribute parsed_slug.
547 548 549 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 547 def parsed_slug @parsed_slug end |
#parsed_user_id ⇒ Object
Returns the value of attribute parsed_user_id.
550 551 552 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 550 def parsed_user_id @parsed_user_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
562 563 564 565 566 567 568 569 570 |
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 562 def from_xml(xml_element) super self.drop_folder_id = xml_element.elements['dropFolderId'].text self.drop_folder_file_ids = xml_element.elements['dropFolderFileIds'].text self.parsed_slug = xml_element.elements['parsedSlug'].text self.content_match_policy = xml_element.elements['contentMatchPolicy'].text self.conversion_profile_id = xml_element.elements['conversionProfileId'].text self.parsed_user_id = xml_element.elements['parsedUserId'].text end |