UNPKG

kaltura-node-typescript-client

Version:
26 lines (25 loc) 876 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaGroup } from './KalturaGroup'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface GroupCloneActionArgs extends KalturaRequestArgs { originalGroupId: string; newGroupId: string; newGroupName?: string; } /** * Build request payload for service 'group' action 'clone'. * * Usage: clone the group (groupId), and set group id with the neeGroupName * * Server response type: KalturaGroup * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class GroupCloneAction extends KalturaRequest<KalturaGroup> { originalGroupId: string; newGroupId: string; newGroupName: string; constructor(data: GroupCloneActionArgs); protected _getMetadata(): KalturaObjectMetadata; }