Class: Kaltura::KalturaEmailNotificationRecipientJobData
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaEmailNotificationRecipientJobData
- Defined in:
- lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb
Overview
Abstract class representing the final output recipients going into the batch mechanism
Direct Known Subclasses
KalturaEmailNotificationCategoryRecipientJobData, KalturaEmailNotificationGroupRecipientJobData, KalturaEmailNotificationStaticRecipientJobData, KalturaEmailNotificationUserRecipientJobData
Instance Attribute Summary collapse
-
#provider_type ⇒ Object
Provider type of the job data.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#provider_type ⇒ Object
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 |