Class: Kaltura::KalturaDirectoryRestriction

Inherits:
KalturaBaseRestriction show all
Defined in:
lib/kaltura_types.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

#directory_restriction_typeObject

Kaltura directory restriction type



12309
12310
12311
# File 'lib/kaltura_types.rb', line 12309

def directory_restriction_type
  @directory_restriction_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12315
12316
12317
12318
12319
12320
# File 'lib/kaltura_types.rb', line 12315

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