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.



2188
2189
2190
# File 'lib/kaltura_types.rb', line 2188

def description
  @description
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2191
2192
2193
2194
2195
2196
# File 'lib/kaltura_types.rb', line 2191

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