@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
28 lines (27 loc) • 743 B
TypeScript
import BitmovinResource from './BitmovinResource';
/**
* @export
* @class SmoothManifestContentProtection
*/
export declare class SmoothManifestContentProtection extends BitmovinResource {
/**
* Id of the encoding. (required)
* @type {string}
* @memberof SmoothManifestContentProtection
*/
encodingId?: string;
/**
* Id of the muxing. (required)
* @type {string}
* @memberof SmoothManifestContentProtection
*/
muxingId?: string;
/**
* Id of the drm. (required)
* @type {string}
* @memberof SmoothManifestContentProtection
*/
drmId?: string;
constructor(obj?: Partial<SmoothManifestContentProtection>);
}
export default SmoothManifestContentProtection;