Class: Kaltura::KalturaFeatureStatus

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

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

#typeObject

Returns the value of attribute type.



2702
2703
2704
# File 'lib/kaltura_types.rb', line 2702

def type
  @type
end

#valueObject

Returns the value of attribute value.



2703
2704
2705
# File 'lib/kaltura_types.rb', line 2703

def value
  @value
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2712
2713
2714
2715
2716
# File 'lib/kaltura_types.rb', line 2712

def from_xml(xml_element)
	super
	self.type = xml_element.elements['type'].text
	self.value = xml_element.elements['value'].text
end