UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

33 lines (32 loc) 872 B
import LiveEncodingEventName from './LiveEncodingEventName'; /** * @export * @class LiveEncodingStatsEventDetails */ export declare class LiveEncodingStatsEventDetails { /** * @type {LiveEncodingEventName} * @memberof LiveEncodingStatsEventDetails */ eventType?: LiveEncodingEventName; /** * Short description of the event * @type {string} * @memberof LiveEncodingStatsEventDetails */ message?: string; /** * Name of the mid roll asset name * @type {string[]} * @memberof LiveEncodingStatsEventDetails */ midRollAssetNames?: string[]; /** * Duration in seconds * @type {number} * @memberof LiveEncodingStatsEventDetails */ durationInSeconds?: number; constructor(obj?: Partial<LiveEncodingStatsEventDetails>); } export default LiveEncodingStatsEventDetails;