Class: Kaltura::KalturaDispatchEventNotificationObjectTask
- Inherits:
-
KalturaObjectTask
- Object
- KalturaObjectBase
- KalturaObjectTask
- Kaltura::KalturaDispatchEventNotificationObjectTask
- Defined in:
- lib/kaltura_plugins/kaltura_scheduled_task_event_notification_client_plugin.rb
Instance Attribute Summary collapse
-
#event_notification_template_id ⇒ Object
The event notification template id to dispatch.
Attributes inherited from KalturaObjectTask
#stop_processing_on_error, #type
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#event_notification_template_id ⇒ Object
The event notification template id to dispatch
36 37 38 |
# File 'lib/kaltura_plugins/kaltura_scheduled_task_event_notification_client_plugin.rb', line 36 def event_notification_template_id @event_notification_template_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
42 43 44 45 46 47 |
# 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 |