class Kaltura::KalturaEventNotificationDispatchJobData
Attributes
content_parameters[RW]
Define the content dynamic parameters
template_id[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
# File lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb, line 291 def from_xml(xml_element) super if xml_element.elements['templateId'] != nil self.template_id = xml_element.elements['templateId'].text end if xml_element.elements['contentParameters'] != nil self.content_parameters = KalturaClientBase.object_from_xml(xml_element.elements['contentParameters'], 'KalturaKeyValue') end end
template_id=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb, line 287 def template_id=(val) @template_id = val.to_i end