kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
26 lines (25 loc) • 974 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaCortexApiDistributionCaptionAction } from './KalturaCortexApiDistributionCaptionAction';
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base';
export interface KalturaCortexApiCaptionDistributionInfoArgs extends KalturaObjectBaseArgs {
language?: string;
label?: string;
filePath?: string;
remoteId?: string;
action?: KalturaCortexApiDistributionCaptionAction;
version?: string;
assetId?: string;
fileExt?: string;
}
export declare class KalturaCortexApiCaptionDistributionInfo extends KalturaObjectBase {
language: string;
label: string;
filePath: string;
remoteId: string;
action: KalturaCortexApiDistributionCaptionAction;
version: string;
assetId: string;
fileExt: string;
constructor(data?: KalturaCortexApiCaptionDistributionInfoArgs);
protected _getMetadata(): KalturaObjectMetadata;
}