@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
23 lines (22 loc) • 669 B
TypeScript
import AdaptationSet from './AdaptationSet';
import AdaptationSetType from './AdaptationSetType';
/**
* @export
* @class SubtitleAdaptationSet
*/
export declare class SubtitleAdaptationSet extends AdaptationSet {
/**
* Discriminator property for AdaptationSet
* @type {string}
* @memberof SubtitleAdaptationSet
*/
readonly type: AdaptationSetType;
/**
* ISO 639-1 (Alpha-2) code identifying the language of the subtitle adaptation set (required)
* @type {string}
* @memberof SubtitleAdaptationSet
*/
lang?: string;
constructor(obj?: Partial<SubtitleAdaptationSet>);
}
export default SubtitleAdaptationSet;