Class: Kaltura::KalturaEventNotificationDispatchJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaEventNotificationDispatchJobData
- Defined in:
- lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb
Direct Known Subclasses
KalturaBusinessProcessNotificationDispatchJobData, 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
285 286 287 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 285 def content_parameters @content_parameters end |
#template_id ⇒ Object
Returns the value of attribute template_id.
283 284 285 |
# File 'lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb', line 283 def template_id @template_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
291 292 293 294 295 296 297 298 299 |
# 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 |