UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

27 lines (26 loc) 739 B
import StreamKeyConfiguration from './StreamKeyConfiguration'; /** * @export * @class StaticRtmpIngestPoint */ export declare class StaticRtmpIngestPoint { /** * The ID of the created static rtmp ingest point * @type {string} * @memberof StaticRtmpIngestPoint */ id?: string; /** * Name of the ingest point. This can be helpful for easier identifying your ingest points * @type {string} * @memberof StaticRtmpIngestPoint */ name?: string; /** * @type {StreamKeyConfiguration} * @memberof StaticRtmpIngestPoint */ streamKeyConfiguration?: StreamKeyConfiguration; constructor(obj?: Partial<StaticRtmpIngestPoint>); } export default StaticRtmpIngestPoint;