UNPKG

@kaltura-ng/kaltura-client

Version:
26 lines (25 loc) 1.04 kB
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaEventNotificationEventObjectType } from './KalturaEventNotificationEventObjectType'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface BusinessProcessCaseAbortActionArgs extends KalturaRequestArgs { objectType: KalturaEventNotificationEventObjectType; objectId: string; businessProcessStartNotificationTemplateId: number; } /** * Build request payload for service 'businessProcessCase' action 'abort'. * * Usage: Abort business-process case * * Server response type: void * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class BusinessProcessCaseAbortAction extends KalturaRequest<void> { objectType: KalturaEventNotificationEventObjectType; objectId: string; businessProcessStartNotificationTemplateId: number; constructor(data: BusinessProcessCaseAbortActionArgs); protected _getMetadata(): KalturaObjectMetadata; }