Class: Kaltura::Service::MediaInfoService
- Inherits:
-
BaseService
- Object
- BaseService
- Kaltura::Service::MediaInfoService
- Defined in:
- lib/kaltura/service.rb
Overview
MediaInfoService is not documented by Kaltura. Probably best to not play with this. This is likely just used internally by the KMC.
Instance Attribute Summary
Attributes inherited from BaseService
Instance Method Summary collapse
-
#list(filter = nil, pager = nil) ⇒ Kaltura::Response::MediaInfoListResponse
Lists media info objects by a filter and a pager.
Methods inherited from BaseService
Constructor Details
This class inherits a constructor from Kaltura::Service::BaseService
Instance Method Details
#list(filter = nil, pager = nil) ⇒ Kaltura::Response::MediaInfoListResponse
Lists media info objects by a filter and a pager.
110 111 112 113 114 115 |
# File 'lib/kaltura/service.rb', line 110 def list(filter=nil, pager=nil) kparams = {} client.add_param(kparams, 'filter', filter) client.add_param(kparams, 'pager', pager) perform_request('mediaInfo','list',kparams,false) end |