@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 507 B
TypeScript
/**
* @export
* @class CencFairPlay
*/
export declare class CencFairPlay {
/**
* Initialization vector as hexadecimal string
* @type {string}
* @memberof CencFairPlay
*/
iv?: string;
/**
* URL of the licensing server. Typically starts with a skd://. Please check with your DRM provider on their required format.
* @type {string}
* @memberof CencFairPlay
*/
uri?: string;
constructor(obj?: Partial<CencFairPlay>);
}
export default CencFairPlay;