@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 785 B
TypeScript
import BitmovinResource from './BitmovinResource';
/**
* @export
* @class CustomPlayerBuildDetails
*/
export declare class CustomPlayerBuildDetails extends BitmovinResource {
/**
* The player version that should be used for the custom player build. If not set the 'latest' version is used. (required)
* @type {string}
* @memberof CustomPlayerBuildDetails
*/
playerVersion?: string;
/**
* The domains that the player is locked to. If not set the player will only work with 'localhost'. Not more than 49 additional domains can be added. (required)
* @type {string[]}
* @memberof CustomPlayerBuildDetails
*/
domains?: string[];
constructor(obj?: Partial<CustomPlayerBuildDetails>);
}
export default CustomPlayerBuildDetails;