UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

40 lines (39 loc) 1.22 kB
import InputType from './InputType'; /** * Details about an individual ingestPoint within the live ingest. * @export * @class LiveEncodingHeartbeatIngestPoint */ export declare class LiveEncodingHeartbeatIngestPoint { /** * The name of the ingestPoint of the original Input resource. * @type {string} * @memberof LiveEncodingHeartbeatIngestPoint */ name?: string; /** * Id of the original Input resource. Note that multiple input points (main and backup) can be part of a single Input resource. * @type {string} * @memberof LiveEncodingHeartbeatIngestPoint */ inputId?: string; /** * @type {InputType} * @memberof LiveEncodingHeartbeatIngestPoint */ inputType?: InputType; /** * Indicates whether this particular input is active. * @type {boolean} * @memberof LiveEncodingHeartbeatIngestPoint */ isActive?: boolean; /** * Indicates whether this particular input is a backup input. * @type {boolean} * @memberof LiveEncodingHeartbeatIngestPoint */ isBackup?: boolean; constructor(obj?: Partial<LiveEncodingHeartbeatIngestPoint>); } export default LiveEncodingHeartbeatIngestPoint;