Class: Kaltura::KalturaEmailNotificationRecipientJobData

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb

Overview

Abstract class representing the final output recipients going into the batch mechanism

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

#provider_typeObject

Provider type of the job data.



82
83
84
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 82

def provider_type
  @provider_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



85
86
87
88
89
90
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 85

def from_xml(xml_element)
	super
	if xml_element.elements['providerType'] != nil
		self.provider_type = xml_element.elements['providerType'].text
	end
end