Class: Kaltura::KalturaUserRoleCondition

Inherits:
KalturaCondition show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaCondition

#description, #not, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#role_idsObject

Comma separated list of role ids



15384
15385
15386
# File 'lib/kaltura_types.rb', line 15384

def role_ids
  @role_ids
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15387
15388
15389
15390
15391
15392
# File 'lib/kaltura_types.rb', line 15387

def from_xml(xml_element)
	super
	if xml_element.elements['roleIds'] != nil
		self.role_ids = xml_element.elements['roleIds'].text
	end
end