class Kaltura::KalturaDispatchEventNotificationObjectTask
Attributes
event_notification_template_id[RW]
The event notification template id to dispatch
Public Instance Methods
event_notification_template_id=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_scheduled_task_event_notification_client_plugin.rb, line 38 def event_notification_template_id=(val) @event_notification_template_id = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectTask#from_xml
# File lib/kaltura_plugins/kaltura_scheduled_task_event_notification_client_plugin.rb, line 42 def from_xml(xml_element) super if xml_element.elements['eventNotificationTemplateId'] != nil self.event_notification_template_id = xml_element.elements['eventNotificationTemplateId'].text end end