@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 540 B
TypeScript
/**
* @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<RtmpIngestPoint>);
}
export default RtmpIngestPoint;