Class: Kaltura::Service::NotificationService

Inherits:
BaseService
  • Object
show all
Defined in:
lib/kaltura/service/notification_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#client

Instance Method Summary collapse

Methods inherited from BaseService

#initialize, #perform_request

Constructor Details

This class inherits a constructor from Kaltura::Service::BaseService

Instance Method Details

#get_client_notification(entry_id, type) ⇒ Object



5
6
7
8
9
10
# File 'lib/kaltura/service/notification_service.rb', line 5

def get_client_notification(entry_id, type)
	kparams = {}
	client.add_param(kparams, 'entryId', entry_id)
	client.add_param(kparams, 'type', type)
	perform_request('notification','getClientNotification',kparams,false)
end