Class: Kaltura::KalturaString
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaString
- Defined in:
- lib/kaltura_types.rb
Overview
A string representation to return an array of strings
Instance Attribute Summary collapse
-
#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
#value ⇒ Object
Returns the value of attribute value.
675 676 677 |
# File 'lib/kaltura_types.rb', line 675 def value @value end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
678 679 680 681 682 683 |
# File 'lib/kaltura_types.rb', line 678 def from_xml(xml_element) super if xml_element.elements['value'] != nil self.value = xml_element.elements['value'].text end end |