kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
31 lines (30 loc) • 1.22 kB
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface XInternalXAddBulkDownloadActionArgs extends KalturaRequestArgs {
entryIds: string;
flavorParamsId?: string;
}
/**
* Build request payload for service 'xInternal' action 'xAddBulkDownload'.
*
* Usage: Creates new download job for multiple entry ids (comma separated), an email will be sent when the job is done
* This service support the following entries:
* - MediaEntry
* - Video will be converted using the flavor params id
* - Audio will be downloaded as MP3
* - Image will be downloaded as Jpeg
* - MixEntry will be flattened using the flavor params id
* - Other entry types are not supported
* Returns the admin email that the email message will be sent to
*
* Server response type: string
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class XInternalXAddBulkDownloadAction extends KalturaRequest<string> {
entryIds: string;
flavorParamsId: string;
constructor(data: XInternalXAddBulkDownloadActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}