class Kaltura::KalturaESearchGroupUserItem
Attributes
creation_mode[RW]
field_name[RW]
Public Instance Methods
creation_mode=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 1283 def creation_mode=(val) @creation_mode = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaESearchAbstractUserItem#from_xml
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 1287 def from_xml(xml_element) super if xml_element.elements['fieldName'] != nil self.field_name = xml_element.elements['fieldName'].text end if xml_element.elements['creationMode'] != nil self.creation_mode = xml_element.elements['creationMode'].text end end