Class: Kaltura::KalturaEventNotificationDispatchJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_plugins/kaltura_event_notification_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#content_parametersObject

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_idObject

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