@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
20 lines (19 loc) • 712 B
TypeScript
import { KalturaObjectBase } from '../kaltura-object-base';
export declare class KalturaAssetType extends KalturaObjectBase {
private _value;
constructor(value?: string | number);
equals(obj: this): boolean;
toString(): string;
static attachment: KalturaAssetType;
static caption: KalturaAssetType;
static document: KalturaAssetType;
static flavor: KalturaAssetType;
static image: KalturaAssetType;
static live: KalturaAssetType;
static pdf: KalturaAssetType;
static swf: KalturaAssetType;
static thumbnail: KalturaAssetType;
static timedThumbAsset: KalturaAssetType;
static transcript: KalturaAssetType;
static widevineFlavor: KalturaAssetType;
}