Class: Kaltura::Service::XInternalService

Inherits:
BaseService
  • Object
show all
Defined in:
lib/kaltura/service/x_internal_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

#x_add_bulk_download(entry_ids, flavor_params_id = '') ⇒ Object



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

def x_add_bulk_download(entry_ids, flavor_params_id='')
	kparams = {}
	client.add_param(kparams, 'entryIds', entry_ids)
	client.add_param(kparams, 'flavorParamsId', flavor_params_id)
	perform_request('xInternal','xAddBulkDownload',kparams,false)
end