@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
30 lines (29 loc) • 1.08 kB
TypeScript
import EncodingOutputPathsDashManifest from './EncodingOutputPathsDashManifest';
import EncodingOutputPathsHlsManifest from './EncodingOutputPathsHlsManifest';
import EncodingOutputPathsSmoothManifest from './EncodingOutputPathsSmoothManifest';
/**
* @export
* @class EncodingOutputPathsForOutput
*/
export declare class EncodingOutputPathsForOutput {
/**
* Output paths for Dash manifests
* @type {EncodingOutputPathsDashManifest[]}
* @memberof EncodingOutputPathsForOutput
*/
dashManifests?: EncodingOutputPathsDashManifest[];
/**
* Output paths for HLS manifests
* @type {EncodingOutputPathsHlsManifest[]}
* @memberof EncodingOutputPathsForOutput
*/
hlsManifests?: EncodingOutputPathsHlsManifest[];
/**
* Output paths for Smooth manifests
* @type {EncodingOutputPathsSmoothManifest[]}
* @memberof EncodingOutputPathsForOutput
*/
smoothManifests?: EncodingOutputPathsSmoothManifest[];
constructor(obj?: Partial<EncodingOutputPathsForOutput>);
}
export default EncodingOutputPathsForOutput;