/** * @export * @class RtmpIngestPoint */ export declare class RtmpIngestPoint { /** * The name of the application where the ingest is streamed to. This has to be unique for each ingest point (required) * @type {string} * @memberof RtmpIngestPoint */ applicationName?: string; /** * The stream key for the backup input (required) * @type {string} * @memberof RtmpIngestPoint */ streamKey?: string; constructor(obj?: Partial); } export default RtmpIngestPoint;