Class: Kaltura::KalturaIndexTagsByPrivacyContextJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#added_privacy_contextsObject

Returns the value of attribute added_privacy_contexts.



73
74
75
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 73

def added_privacy_contexts
  @added_privacy_contexts
end

#changed_category_idObject

Returns the value of attribute changed_category_id.



71
72
73
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 71

def changed_category_id
  @changed_category_id
end

#deleted_privacy_contextsObject

Returns the value of attribute deleted_privacy_contexts.



72
73
74
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 72

def deleted_privacy_contexts
  @deleted_privacy_contexts
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



79
80
81
82
83
84
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 79

def from_xml(xml_element)
	super
	self.changed_category_id = xml_element.elements['changedCategoryId'].text
	self.deleted_privacy_contexts = xml_element.elements['deletedPrivacyContexts'].text
	self.added_privacy_contexts = xml_element.elements['addedPrivacyContexts'].text
end