Class: Kaltura::Service::EntryAdminService
- Inherits:
-
BaseService
- Object
- BaseService
- Kaltura::Service::EntryAdminService
- Defined in:
- lib/kaltura/service.rb
Overview
EntryAdminService is not documented by Kaltura. Probably best not to play with this. This is likely just used internally by the KMC.
Instance Attribute Summary
Attributes inherited from BaseService
Instance Method Summary collapse
-
#get(entry_id, version = -1)) ⇒ Object
Gets an EntryAdmin object by entry_id.
Methods inherited from BaseService
Constructor Details
This class inherits a constructor from Kaltura::Service::BaseService
Instance Method Details
#get(entry_id, version = -1)) ⇒ Object
Gets an EntryAdmin object by entry_id.
134 135 136 137 138 139 |
# File 'lib/kaltura/service.rb', line 134 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 |