class Kaltura::KalturaEventNotificationParameter
Attributes
description[RW]
key[RW]
The key in the subject and body to be replaced with the dynamic value
value[RW]
The dynamic value to be placed in the final output
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb, line 134 def from_xml(xml_element) super if xml_element.elements['key'] != nil self.key = xml_element.elements['key'].text end if xml_element.elements['description'] != nil self.description = xml_element.elements['description'].text end if xml_element.elements['value'] != nil self.value = KalturaClientBase.object_from_xml(xml_element.elements['value'], 'KalturaStringValue') end end