Class: Kaltura::KalturaRegexItem

Inherits:
KalturaObjectBase 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

#regexObject

Returns the value of attribute regex.



1926
1927
1928
# File 'lib/kaltura_types.rb', line 1926

def regex
  @regex
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1929
1930
1931
1932
1933
1934
# File 'lib/kaltura_types.rb', line 1929

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