Class: Kaltura::Service::FlavorParamsOutputService

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

Overview

FlavorParamsOutputService 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

#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

#list(filter = nil, pager = nil) ⇒ Kaltura::Response::FlavorParamsOutputListResponse

Lists file sync objects by a filter and a pager.

Parameters:

Returns:

Raises:



87
88
89
90
91
92
# File 'lib/kaltura/service.rb', line 87

def list(filter=nil, pager=nil)
	kparams = {}
	client.add_param(kparams, 'filter', filter)
	client.add_param(kparams, 'pager', pager)
	perform_request('flavorParamsOutput','list',kparams,false)
end