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); } export default StaticRtmpIngestPoint;