@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 514 B
TypeScript
/**
* @export
* @class AdOpportunity
*/
export declare class AdOpportunity {
/**
* The reason why the scene was rated with a certain score
* @type {string}
* @memberof AdOpportunity
*/
reason?: string;
/**
* Score from 0.0 to 1.0 rating the ad placement suitability at the end of a scene based on content analysis
* @type {number}
* @memberof AdOpportunity
*/
score?: number;
constructor(obj?: Partial<AdOpportunity>);
}
export default AdOpportunity;