class Kaltura::KalturaUserRoleCondition

Attributes

role_ids[RW]

Comma separated list of role ids

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaCondition#from_xml
# File lib/kaltura_types.rb, line 16010
def from_xml(xml_element)
        super
        if xml_element.elements['roleIds'] != nil
                self.role_ids = xml_element.elements['roleIds'].text
        end
end