Class: Kaltura::Service::EntryAdminService

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

Overview

class MediaInfoService

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(entry_id, version = -1)) ⇒ Object



68
69
70
71
72
73
# File 'lib/kaltura/service.rb', line 68

def get(entry_id, version=-1)
	kparams = {}
	client.add_param(kparams, 'entryId', entry_id)
	client.add_param(kparams, 'version', version)
	perform_request('entryAdmin','get',kparams,false)
end