class Kaltura::KalturaBooleanValue
A boolean representation to return an array of booleans
Attributes
value[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaValue#from_xml
# File lib/kaltura_types.rb, line 2331 def from_xml(xml_element) super if xml_element.elements['value'] != nil self.value = xml_element.elements['value'].text end end
value=(val)
click to toggle source
# File lib/kaltura_types.rb, line 2327 def value=(val) @value = to_b(val) end