@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
24 lines (23 loc) • 854 B
TypeScript
import LiveEncodingHeartbeatManifests from './LiveEncodingHeartbeatManifests';
import LiveEncodingHeartbeatSegments from './LiveEncodingHeartbeatSegments';
/**
* Output statistics for a live encoding heartbeat.
* @export
* @class LiveEncodingHeartbeatOutput
*/
export declare class LiveEncodingHeartbeatOutput {
/**
* Manifest statistics for the live encoding output.
* @type {LiveEncodingHeartbeatManifests}
* @memberof LiveEncodingHeartbeatOutput
*/
manifests?: LiveEncodingHeartbeatManifests;
/**
* Segment processing statistics for the live encoding output.
* @type {LiveEncodingHeartbeatSegments}
* @memberof LiveEncodingHeartbeatOutput
*/
segments?: LiveEncodingHeartbeatSegments;
constructor(obj?: Partial<LiveEncodingHeartbeatOutput>);
}
export default LiveEncodingHeartbeatOutput;