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.



4569
4570
4571
# File 'lib/kaltura_types.rb', line 4569

def type
  @type
end

#valueObject

Returns the value of attribute value.



4570
4571
4572
# File 'lib/kaltura_types.rb', line 4570

def value
  @value
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4579
4580
4581
4582
4583
4584
4585
4586
4587
# File 'lib/kaltura_types.rb', line 4579

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