class Kaltura::KalturaValue

A representation to return an array of values

Attributes

description[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 2314
def from_xml(xml_element)
        super
        if xml_element.elements['description'] != nil
                self.description = xml_element.elements['description'].text
        end
end