@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
30 lines (29 loc) • 927 B
TypeScript
import LiveEncodingHeartbeatEvent from './LiveEncodingHeartbeatEvent';
import LiveEncodingHeartbeatIngest from './LiveEncodingHeartbeatIngest';
/**
* Heartbeat data for a Live Encoding.
* @export
* @class LiveEncodingHeartbeat
*/
export declare class LiveEncodingHeartbeat {
/**
* timestamp, returned as UTC expressed in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
* @type {Date}
* @memberof LiveEncodingHeartbeat
*/
timestamp?: Date;
/**
* Information about the live ingestion status
* @type {LiveEncodingHeartbeatIngest}
* @memberof LiveEncodingHeartbeat
*/
ingest?: LiveEncodingHeartbeatIngest;
/**
* Live encoding heartbeat events
* @type {LiveEncodingHeartbeatEvent[]}
* @memberof LiveEncodingHeartbeat
*/
events?: LiveEncodingHeartbeatEvent[];
constructor(obj?: Partial<LiveEncodingHeartbeat>);
}
export default LiveEncodingHeartbeat;