@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
56 lines (55 loc) • 978 B
TypeScript
import Content from './Content';
import IABTaxonomy from './IABTaxonomy';
/**
* @export
* @class Scene
*/
export declare class Scene {
/**
* @type {string}
* @memberof Scene
*/
title?: string;
/**
* @type {number}
* @memberof Scene
*/
startInSeconds?: number;
/**
* @type {number}
* @memberof Scene
*/
endInSeconds?: number;
/**
* @type {string}
* @memberof Scene
*/
id?: string;
/**
* @type {Content}
* @memberof Scene
*/
content?: Content;
/**
* @type {string}
* @memberof Scene
*/
summary?: string;
/**
* @type {string[]}
* @memberof Scene
*/
sensitiveTopics?: string[];
/**
* @type {string[]}
* @memberof Scene
*/
keywords?: string[];
/**
* @type {IABTaxonomy}
* @memberof Scene
*/
iab?: IABTaxonomy;
constructor(obj?: Partial<Scene>);
}
export default Scene;