Class: Kaltura::KalturaEmailNotificationGroupRecipientProvider
- Inherits:
-
KalturaEmailNotificationRecipientProvider
- Object
- KalturaObjectBase
- KalturaEmailNotificationRecipientProvider
- Kaltura::KalturaEmailNotificationGroupRecipientProvider
- Defined in:
- lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb
Overview
API class for recipient provider which constructs a dynamic list of recipients according to a user filter
Instance Attribute Summary collapse
-
#group_id ⇒ Object
Returns the value of attribute group_id.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#group_id ⇒ Object
Returns the value of attribute group_id.
233 234 235 |
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 233 def group_id @group_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
236 237 238 239 240 241 |
# File 'lib/kaltura_plugins/kaltura_email_notification_client_plugin.rb', line 236 def from_xml(xml_element) super if xml_element.elements['groupId'] != nil self.group_id = xml_element.elements['groupId'].text end end |