Class: Kaltura::KalturaEventNotificationDispatchJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaEventNotificationDispatchJobData
- Defined in:
- lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb
Direct Known Subclasses
KalturaEmailNotificationDispatchJobData, KalturaHttpNotificationDispatchJobData
Instance Attribute Summary collapse
-
#content_parameters ⇒ Object
Define the content dynamic parameters.
-
#template_id ⇒ Object
Returns the value of attribute template_id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#content_parameters ⇒ Object
Define the content dynamic parameters
241 242 243 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 241 def content_parameters @content_parameters end |
#template_id ⇒ Object
Returns the value of attribute template_id.
238 239 240 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 238 def template_id @template_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
247 248 249 250 251 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 247 def from_xml(xml_element) super self.template_id = xml_element.elements['templateId'].text self.content_parameters = KalturaClientBase.object_from_xml(xml_element.elements['contentParameters'], 'KalturaKeyValue') end |