kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
24 lines (23 loc) • 838 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaQuizOutputType } from './KalturaQuizOutputType';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface QuizGetUrlActionArgs extends KalturaRequestArgs {
entryId: string;
quizOutputType: KalturaQuizOutputType;
}
/**
* Build request payload for service 'quiz' action 'getUrl'.
*
* Usage: sends a with an api request for pdf from quiz object
*
* Server response type: string
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class QuizGetUrlAction extends KalturaRequest<string> {
entryId: string;
quizOutputType: KalturaQuizOutputType;
constructor(data: QuizGetUrlActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}