UNPKG

kaltura-node-typescript-client

Version:
23 lines (22 loc) 1.12 kB
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaResponseProfileCacheRecalculateResults } from './KalturaResponseProfileCacheRecalculateResults'; import { KalturaResponseProfileCacheRecalculateOptions } from './KalturaResponseProfileCacheRecalculateOptions'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface ResponseProfileRecalculateActionArgs extends KalturaRequestArgs { options: KalturaResponseProfileCacheRecalculateOptions; } /** * Build request payload for service 'responseProfile' action 'recalculate'. * * Usage: Recalculate response profile cached objects * * Server response type: KalturaResponseProfileCacheRecalculateResults * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class ResponseProfileRecalculateAction extends KalturaRequest<KalturaResponseProfileCacheRecalculateResults> { options: KalturaResponseProfileCacheRecalculateOptions; constructor(data: ResponseProfileRecalculateActionArgs); protected _getMetadata(): KalturaObjectMetadata; }