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.



2164
2165
2166
# File 'lib/kaltura_types.rb', line 2164

def description
  @description
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2167
2168
2169
2170
2171
2172
# File 'lib/kaltura_types.rb', line 2167

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