class Kaltura::KalturaEmailNotificationRecipientJobData

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

Attributes

provider_type[RW]

Provider type of the job data.

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# 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