kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
24 lines (23 loc) • 927 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaLiveChannelSegment } from './KalturaLiveChannelSegment';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface LiveChannelSegmentUpdateActionArgs extends KalturaRequestArgs {
id: number;
liveChannelSegment: KalturaLiveChannelSegment;
}
/**
* Build request payload for service 'liveChannelSegment' action 'update'.
*
* Usage: Update live channel segment by id
*
* Server response type: KalturaLiveChannelSegment
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class LiveChannelSegmentUpdateAction extends KalturaRequest<KalturaLiveChannelSegment> {
id: number;
liveChannelSegment: KalturaLiveChannelSegment;
constructor(data: LiveChannelSegmentUpdateActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}