Class: Kaltura::KalturaEntryAdminService

Inherits:
KalturaServiceBase show all
Defined in:
lib/kaltura_client.rb

Instance Attribute Summary

Attributes inherited from KalturaServiceBase

#client

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ KalturaEntryAdminService

Returns a new instance of KalturaEntryAdminService.



5437
5438
5439
# File 'lib/kaltura_client.rb', line 5437

def initialize(client)
	super(client)
end

Instance Method Details

#get(entry_id, version = -1)) ⇒ Object



5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
# File 'lib/kaltura_client.rb', line 5441

def get(entry_id, version=-1)
	kparams = {}
	client.add_param(kparams, 'entryId', entry_id);
	client.add_param(kparams, 'version', version);
	client.queue_service_action_call('entryAdmin', 'get', kparams);
	if (client.is_multirequest)
		return nil;
	end
	return client.do_queue();
end