UNPKG

kaltura-node-typescript-client

Version:
24 lines (23 loc) 933 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaEntryVendorTask } from './KalturaEntryVendorTask'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface EntryVendorTaskUpdateActionArgs extends KalturaRequestArgs { id: number; entryVendorTask: KalturaEntryVendorTask; } /** * Build request payload for service 'entryVendorTask' action 'update'. * * Usage: Update entry vendor task. Only the properties that were set will be updated * * Server response type: KalturaEntryVendorTask * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class EntryVendorTaskUpdateAction extends KalturaRequest<KalturaEntryVendorTask> { id: number; entryVendorTask: KalturaEntryVendorTask; constructor(data: EntryVendorTaskUpdateActionArgs); protected _getMetadata(): KalturaObjectMetadata; }