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.



87
88
89
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 87

def added_privacy_contexts
  @added_privacy_contexts
end

#changed_category_idObject

Returns the value of attribute changed_category_id.



85
86
87
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 85

def changed_category_id
  @changed_category_id
end

#deleted_privacy_contextsObject

Returns the value of attribute deleted_privacy_contexts.



86
87
88
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 86

def deleted_privacy_contexts
  @deleted_privacy_contexts
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/kaltura_plugins/kaltura_tag_search_client_plugin.rb', line 93

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