Class: Kaltura::KalturaValue

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

Overview

A representation to return an array of values

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

#descriptionObject

Returns the value of attribute description.



2399
2400
2401
# File 'lib/kaltura_types.rb', line 2399

def description
  @description
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2402
2403
2404
2405
2406
2407
# File 'lib/kaltura_types.rb', line 2402

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