Class: Kaltura::KalturaContextDataResult
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaContextDataResult
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#actions ⇒ Object
Array of actions as received from the rules that invalidated.
-
#messages ⇒ Object
Array of messages as received from the rules that invalidated.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#actions ⇒ Object
Array of actions as received from the rules that invalidated
3111 3112 3113 |
# File 'lib/kaltura_types.rb', line 3111 def actions @actions end |
#messages ⇒ Object
Array of messages as received from the rules that invalidated
3109 3110 3111 |
# File 'lib/kaltura_types.rb', line 3109 def @messages end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3114 3115 3116 3117 3118 3119 3120 3121 3122 |
# File 'lib/kaltura_types.rb', line 3114 def from_xml(xml_element) super if xml_element.elements['messages'] != nil self. = 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 |