@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 628 B
TypeScript
import LiveEncodingHeartbeatEventType from './LiveEncodingHeartbeatEventType';
/**
* @export
* @class LiveEncodingHeartbeatEventDetails
*/
export declare class LiveEncodingHeartbeatEventDetails {
/**
* @type {LiveEncodingHeartbeatEventType}
* @memberof LiveEncodingHeartbeatEventDetails
*/
eventType?: LiveEncodingHeartbeatEventType;
/**
* Short description of the event
* @type {string}
* @memberof LiveEncodingHeartbeatEventDetails
*/
message?: string;
constructor(obj?: Partial<LiveEncodingHeartbeatEventDetails>);
}
export default LiveEncodingHeartbeatEventDetails;