@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
46 lines (45 loc) • 1 kB
TypeScript
/**
* Details about user info from rtmp ingest.
* @export
* @class RtmpUserIngestInfo
*/
export declare class RtmpUserIngestInfo {
/**
* Client public IP address.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
address?: string;
/**
* RTMP application name.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
app?: string;
/**
* Client stream key.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
streamKey?: string;
/**
* Flash version string / encoder identity.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
flashVersion?: string;
/**
* Session/client connection ID.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
clientId?: string;
/**
* Server action.
* @type {string}
* @memberof RtmpUserIngestInfo
*/
eventType?: string;
constructor(obj?: Partial<RtmpUserIngestInfo>);
}
export default RtmpUserIngestInfo;