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); } export default SubtitleAdaptationSet;