class Kaltura::KalturaFeatureStatus

Attributes

type[RW]
value[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 4750
def from_xml(xml_element)
        super
        if xml_element.elements['type'] != nil
                self.type = xml_element.elements['type'].text
        end
        if xml_element.elements['value'] != nil
                self.value = xml_element.elements['value'].text
        end
end
type=(val) click to toggle source
# File lib/kaltura_types.rb, line 4743
def type=(val)
        @type = val.to_i
end
value=(val) click to toggle source
# File lib/kaltura_types.rb, line 4746
def value=(val)
        @value = val.to_i
end