kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
27 lines (26 loc) • 995 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaUserScorePropertiesResponse } from './KalturaUserScorePropertiesResponse';
import { KalturaGameObjectType } from './KalturaGameObjectType';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface UserScoreDeleteActionArgs extends KalturaRequestArgs {
gameObjectId: string;
gameObjectType: KalturaGameObjectType;
userId: string;
}
/**
* Build request payload for service 'userScore' action 'delete'.
*
*
*
* Server response type: KalturaUserScorePropertiesResponse
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class UserScoreDeleteAction extends KalturaRequest<KalturaUserScorePropertiesResponse> {
gameObjectId: string;
gameObjectType: KalturaGameObjectType;
userId: string;
constructor(data: UserScoreDeleteActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}