class Kaltura::KalturaIntegerValue
An int representation to return an array of ints
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 5732 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 5728 def value=(val) @value = val.to_i end