UNPKG

@kaltura-ng/kaltura-client

Version:
24 lines (23 loc) 787 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaCuePoint } from './KalturaCuePoint'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface CuePointCloneActionArgs extends KalturaRequestArgs { id: string; entryId: string; } /** * Build request payload for service 'cuePoint' action 'clone'. * * Usage: Clone cuePoint with id to given entry * * Server response type: KalturaCuePoint * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class CuePointCloneAction extends KalturaRequest<KalturaCuePoint> { id: string; entryId: string; constructor(data: CuePointCloneActionArgs); protected _getMetadata(): KalturaObjectMetadata; }