class Kaltura::KalturaContextDataResult
Attributes
actions[RW]
Array of actions as received from the rules that invalidated
messages[RW]
Array of messages as received from the rules that invalidated
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 3087 def from_xml(xml_element) super if xml_element.elements['messages'] != nil self.messages = KalturaClientBase.object_from_xml(xml_element.elements['messages'], 'KalturaString') end if xml_element.elements['actions'] != nil self.actions = KalturaClientBase.object_from_xml(xml_element.elements['actions'], 'KalturaRuleAction') end end