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.



2346
2347
2348
# File 'lib/kaltura_types.rb', line 2346

def description
  @description
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2349
2350
2351
2352
2353
2354
# File 'lib/kaltura_types.rb', line 2349

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