Class: Kaltura::KalturaFeatureStatus
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaFeatureStatus
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
-
#value ⇒ Object
Returns the value of attribute value.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
4704 4705 4706 |
# File 'lib/kaltura_types.rb', line 4704 def type @type end |
#value ⇒ Object
Returns the value of attribute value.
4705 4706 4707 |
# File 'lib/kaltura_types.rb', line 4705 def value @value end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4714 4715 4716 4717 4718 4719 4720 4721 4722 |
# File 'lib/kaltura_types.rb', line 4714 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 |