kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
22 lines (21 loc) • 920 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaEntryVendorTaskFilter } from './KalturaEntryVendorTaskFilter';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface EntryVendorTaskExportToCsvActionArgs extends KalturaRequestArgs {
filter: KalturaEntryVendorTaskFilter;
}
/**
* Build request payload for service 'entryVendorTask' action 'exportToCsv'.
*
* Usage: add batch job that sends an email with a link to download an updated CSV that contains list of users
*
* Server response type: string
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class EntryVendorTaskExportToCsvAction extends KalturaRequest<string> {
filter: KalturaEntryVendorTaskFilter;
constructor(data: EntryVendorTaskExportToCsvActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}