Class: Kaltura::KalturaEmailNotificationStaticRecipientJobData

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

Overview

JobData representing the static receipient array

Instance Attribute Summary collapse

Attributes inherited from KalturaEmailNotificationRecipientJobData

#provider_type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#email_recipientsObject

Email to emails and names



197
198
199
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 197

def email_recipients
  @email_recipients
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



200
201
202
203
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 200

def from_xml(xml_element)
	super
	self.email_recipients = KalturaClientBase.object_from_xml(xml_element.elements['emailRecipients'], 'KalturaKeyValue')
end